diff --git a/.github/workflows/python-typecheck.yml b/.github/workflows/python-typecheck.yml new file mode 100644 index 00000000..ae280301 --- /dev/null +++ b/.github/workflows/python-typecheck.yml @@ -0,0 +1,42 @@ +name: Python Type Check + +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true + +on: + pull_request: + push: + branches: + - dev + +jobs: + typecheck: + name: mypy --strict (baseline) + runs-on: ubuntu-latest + timeout-minutes: 10 + + steps: + - uses: actions/checkout@v3 + + - name: Setup Python + uses: actions/setup-python@v3 + with: + python-version: '3.10' + + - name: Cache pip + uses: actions/cache@v3 + with: + path: ~/.cache/pip + key: typecheck-${{ runner.os }}-${{ hashFiles('requirements-dev.txt') }} + restore-keys: typecheck-${{ runner.os }}- + + - name: Install type-check dependencies + run: pip install -r requirements-dev.txt + + - name: Run mypy with baseline filter + # Fails if any *new* violations are introduced beyond the frozen baseline. + # To update the baseline after fixing violations, run locally: + # python -m mypy -p aaz_dev | python -m mypy_baseline sync + # and commit the updated mypy-baseline.txt. + run: python -m mypy -p aaz_dev | python -m mypy_baseline filter diff --git a/.gitignore b/.gitignore index 88402982..763989f7 100644 --- a/.gitignore +++ b/.gitignore @@ -138,3 +138,6 @@ src/aaz_dev/ui .env */.env + +# MonkeyType trace database +monkeytype.sqlite3 diff --git a/monkeytype_config.py b/monkeytype_config.py new file mode 100644 index 00000000..d356f698 --- /dev/null +++ b/monkeytype_config.py @@ -0,0 +1,42 @@ +""" +MonkeyType configuration for aaz-dev-tools. + +Usage — trace, then apply: + PYTHONPATH=src/aaz_dev:src python -m monkeytype run -m pytest \ + src/aaz_dev/command/tests/configuration_tests/ \ + src/aaz_dev/command/tests/editor_tests/test_serialize_shorthand.py \ + --ignore=src/aaz_dev/command/tests/configuration_tests/test_xml.py \ + -q + + python -m monkeytype list-modules + python -m monkeytype apply + +Notes: +- The code_filter restricts tracing to src/aaz_dev/ only, keeping Flask/schematics + stdlib internals out of the trace database. +- Module names in the DB use the unqualified form (e.g. "utils.case") because the + codebase adds src/aaz_dev/ to sys.path. Apply with those unqualified names. +""" + +import os +from monkeytype.config import DefaultConfig +from monkeytype.typing import NoOpRewriter + + +_REPO_ROOT = os.path.dirname(os.path.abspath(__file__)) +_SOURCE_ROOT = os.path.join(_REPO_ROOT, "src", "aaz_dev") + + +class AazDevConfig(DefaultConfig): + def code_filter(self): # type: ignore[override] + """Only trace code that lives inside src/aaz_dev/.""" + source_root = _SOURCE_ROOT + + def _filter(code): # type: ignore[no-untyped-def] + filename = code.co_filename or "" + return filename.startswith(source_root) + + return _filter + + +CONFIG = AazDevConfig() diff --git a/mypy-baseline.txt b/mypy-baseline.txt new file mode 100644 index 00000000..252d3a5d --- /dev/null +++ b/mypy-baseline.txt @@ -0,0 +1,5483 @@ +src/aaz_dev/utils/stage.py:0: error: Class cannot subclass "StringType" (has type "Any") [misc] +src/aaz_dev/utils/readme_helper.py:0: error: Library stubs not installed for "yaml" [import-untyped] +src/aaz_dev/utils/readme_helper.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/utils/readme_helper.py:0: error: Call to untyped function "_update_config" in typed context [no-untyped-call] +src/aaz_dev/utils/readme_helper.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/utils/readme_helper.py:0: error: Need type annotation for "readme_config" (hint: "readme_config: dict[, ] = ...") [var-annotated] +src/aaz_dev/utils/readme_helper.py:0: error: Need type annotation for "yaml_content" (hint: "yaml_content: list[] = ...") [var-annotated] +src/aaz_dev/utils/readme_helper.py:0: error: Call to untyped function "_update_config" in typed context [no-untyped-call] +src/aaz_dev/utils/plane.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/utils/plane.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/utils/plane.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/utils/plane.py:0: error: Call to untyped function "is_data_plane" of "PlaneEnum" in typed context [no-untyped-call] +src/aaz_dev/utils/plane.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/utils/plane.py:0: error: Call to untyped function "is_data_plane" of "PlaneEnum" in typed context [no-untyped-call] +src/aaz_dev/utils/fields.py:0: error: Class cannot subclass "StringType" (has type "Any") [misc] +src/aaz_dev/utils/fields.py:0: error: Class cannot subclass "StringType" (has type "Any") [misc] +src/aaz_dev/utils/error_format.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/utils/error_format.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/utils/client.py:0: error: Incompatible return value type (got "tuple[str, ...]", expected "tuple[str, str, str, str]") [return-value] +src/aaz_dev/utils/case.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/utils/case.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/utils/case.py:0: error: Returning Any from function declared to return "str" [no-any-return] +src/aaz_dev/swagger/utils/tools.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/utils/tools.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/utils/tools.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/utils/exceptions.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/utils/exceptions.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/tests/schema_tests/test_swagger_link.py:0: error: Class cannot subclass "SwaggerSpecsTestCase" (has type "Any") [misc] +src/aaz_dev/swagger/tests/schema_tests/test_swagger_link.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/swagger/tests/schema_tests/test_swagger_link.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/swagger/tests/schema_tests/test_swagger_link.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/swagger/tests/schema_tests/test_swagger_link.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/swagger/tests/schema_tests/test_swagger_link.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/swagger/tests/controller_tests/test_command_generator.py:0: error: Class cannot subclass "SwaggerSpecsTestCase" (has type "Any") [misc] +src/aaz_dev/swagger/tests/controller_tests/test_command_generator.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/swagger/tests/controller_tests/test_command_generator.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/swagger/tests/controller_tests/test_command_generator.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/swagger/tests/controller_tests/test_command_generator.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/swagger/tests/controller_tests/test_command_generator.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/swagger/tests/controller_tests/test_command_generator.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/swagger/tests/controller_tests/test_command_generator.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/swagger/tests/controller_tests/test_command_generator.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/swagger/tests/controller_tests/test_command_generator.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/swagger/tests/controller_tests/test_command_generator.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/swagger/tests/controller_tests/test_command_generator.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/swagger/tests/controller_tests/test_command_generator.py:0: error: Need type annotation for "command_group_names" (hint: "command_group_names: dict[, ] = ...") [var-annotated] +src/aaz_dev/swagger/tests/controller_tests/test_command_generator.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/swagger/tests/controller_tests/test_command_generator.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/swagger/tests/controller_tests/test_command_generator.py:0: error: Need type annotation for "command_group_names" (hint: "command_group_names: dict[, ] = ...") [var-annotated] +src/aaz_dev/swagger/tests/common.py:0: error: Class cannot subclass "ApiTestCase" (has type "Any") [misc] +src/aaz_dev/swagger/tests/common.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/tests/common.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/tests/common.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/tests/common.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/tests/common.py:0: error: Call to untyped function "get_data_plane_modules" in typed context [no-untyped-call] +src/aaz_dev/swagger/tests/common.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/tests/common.py:0: error: Call to untyped function "get_mgmt_plane_modules" in typed context [no-untyped-call] +src/aaz_dev/swagger/tests/common.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/tests/common.py:0: error: Call to untyped function "get_data_plane_resource_providers" in typed context [no-untyped-call] +src/aaz_dev/swagger/tests/common.py:0: error: Call to untyped function "get_mgmt_plane_resource_providers" in typed context [no-untyped-call] +src/aaz_dev/swagger/tests/common.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/tests/common.py:0: error: Call to untyped function "get_resource_providers" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/schema/x_ms_parameter_grouping.py:0: error: Class cannot subclass "Model" (has type "Any") [misc] +src/aaz_dev/swagger/model/schema/x_ms_parameter_grouping.py:0: error: Class cannot subclass "ModelType" (has type "Any") [misc] +src/aaz_dev/swagger/model/schema/x_ms_parameter_grouping.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/schema/x_ms_pageable.py:0: error: Class cannot subclass "Model" (has type "Any") [misc] +src/aaz_dev/swagger/model/schema/x_ms_pageable.py:0: error: Class cannot subclass "ModelType" (has type "Any") [misc] +src/aaz_dev/swagger/model/schema/x_ms_pageable.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/schema/x_ms_long_running_operation.py:0: error: Class cannot subclass "BooleanType" (has type "Any") [misc] +src/aaz_dev/swagger/model/schema/x_ms_long_running_operation.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/schema/x_ms_long_running_operation.py:0: error: Class cannot subclass "Model" (has type "Any") [misc] +src/aaz_dev/swagger/model/schema/x_ms_long_running_operation.py:0: error: Class cannot subclass "ModelType" (has type "Any") [misc] +src/aaz_dev/swagger/model/schema/x_ms_long_running_operation.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/schema/x_ms_enum.py:0: error: Class cannot subclass "Model" (has type "Any") [misc] +src/aaz_dev/swagger/model/schema/x_ms_enum.py:0: error: Class cannot subclass "Model" (has type "Any") [misc] +src/aaz_dev/swagger/model/schema/x_ms_enum.py:0: error: Class cannot subclass "ModelType" (has type "Any") [misc] +src/aaz_dev/swagger/model/schema/x_ms_enum.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/schema/license.py:0: error: Class cannot subclass "Model" (has type "Any") [misc] +src/aaz_dev/swagger/model/schema/fields.py:0: error: Class cannot subclass "StringType" (has type "Any") [misc] +src/aaz_dev/swagger/model/schema/fields.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/schema/fields.py:0: error: Class cannot subclass "StringType" (has type "Any") [misc] +src/aaz_dev/swagger/model/schema/fields.py:0: error: Class cannot subclass "StringType" (has type "Any") [misc] +src/aaz_dev/swagger/model/schema/fields.py:0: error: Class cannot subclass "DictType" (has type "Any") [misc] +src/aaz_dev/swagger/model/schema/fields.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/schema/fields.py:0: error: Class cannot subclass "DictType" (has type "Any") [misc] +src/aaz_dev/swagger/model/schema/fields.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/schema/fields.py:0: error: Class cannot subclass "BaseType" (has type "Any") [misc] +src/aaz_dev/swagger/model/schema/fields.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/schema/fields.py:0: error: Class cannot subclass "BaseType" (has type "Any") [misc] +src/aaz_dev/swagger/model/schema/fields.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/schema/fields.py:0: error: Class cannot subclass "BaseType" (has type "Any") [misc] +src/aaz_dev/swagger/model/schema/fields.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/schema/fields.py:0: error: Class cannot subclass "BooleanType" (has type "Any") [misc] +src/aaz_dev/swagger/model/schema/fields.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/schema/fields.py:0: error: Class cannot subclass "StringType" (has type "Any") [misc] +src/aaz_dev/swagger/model/schema/fields.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/schema/fields.py:0: error: Class cannot subclass "StringType" (has type "Any") [misc] +src/aaz_dev/swagger/model/schema/fields.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/schema/fields.py:0: error: Class cannot subclass "BooleanType" (has type "Any") [misc] +src/aaz_dev/swagger/model/schema/fields.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/schema/fields.py:0: error: Class cannot subclass "StringType" (has type "Any") [misc] +src/aaz_dev/swagger/model/schema/fields.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/schema/fields.py:0: error: Class cannot subclass "BooleanType" (has type "Any") [misc] +src/aaz_dev/swagger/model/schema/fields.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/schema/fields.py:0: error: Class cannot subclass "ListType" (has type "Any") [misc] +src/aaz_dev/swagger/model/schema/fields.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/schema/fields.py:0: error: Class cannot subclass "BooleanType" (has type "Any") [misc] +src/aaz_dev/swagger/model/schema/fields.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/schema/fields.py:0: error: Class cannot subclass "BooleanType" (has type "Any") [misc] +src/aaz_dev/swagger/model/schema/fields.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/schema/fields.py:0: error: Class cannot subclass "BaseType" (has type "Any") [misc] +src/aaz_dev/swagger/model/schema/fields.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/schema/fields.py:0: error: Class cannot subclass "BaseType" (has type "Any") [misc] +src/aaz_dev/swagger/model/schema/fields.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/schema/fields.py:0: error: Class cannot subclass "BooleanType" (has type "Any") [misc] +src/aaz_dev/swagger/model/schema/fields.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/schema/fields.py:0: error: Class cannot subclass "StringType" (has type "Any") [misc] +src/aaz_dev/swagger/model/schema/fields.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/schema/fields.py:0: error: Class cannot subclass "BooleanType" (has type "Any") [misc] +src/aaz_dev/swagger/model/schema/fields.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/schema/fields.py:0: error: Class cannot subclass "BooleanType" (has type "Any") [misc] +src/aaz_dev/swagger/model/schema/fields.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/schema/fields.py:0: error: Class cannot subclass "BooleanType" (has type "Any") [misc] +src/aaz_dev/swagger/model/schema/fields.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/schema/fields.py:0: error: Class cannot subclass "BooleanType" (has type "Any") [misc] +src/aaz_dev/swagger/model/schema/fields.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/schema/fields.py:0: error: Class cannot subclass "BooleanType" (has type "Any") [misc] +src/aaz_dev/swagger/model/schema/fields.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/schema/fields.py:0: error: Class cannot subclass "StringType" (has type "Any") [misc] +src/aaz_dev/swagger/model/schema/fields.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/schema/fields.py:0: error: Class cannot subclass "StringType" (has type "Any") [misc] +src/aaz_dev/swagger/model/schema/fields.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/schema/fields.py:0: error: Class cannot subclass "StringType" (has type "Any") [misc] +src/aaz_dev/swagger/model/schema/fields.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/schema/fields.py:0: error: Class cannot subclass "StringType" (has type "Any") [misc] +src/aaz_dev/swagger/model/schema/fields.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/schema/fields.py:0: error: Class cannot subclass "BooleanType" (has type "Any") [misc] +src/aaz_dev/swagger/model/schema/fields.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/schema/fields.py:0: error: Class cannot subclass "BooleanType" (has type "Any") [misc] +src/aaz_dev/swagger/model/schema/fields.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/schema/fields.py:0: error: Class cannot subclass "BooleanType" (has type "Any") [misc] +src/aaz_dev/swagger/model/schema/fields.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/schema/fields.py:0: error: Class cannot subclass "BaseType" (has type "Any") [misc] +src/aaz_dev/swagger/model/schema/fields.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/schema/fields.py:0: error: Class cannot subclass "BaseType" (has type "Any") [misc] +src/aaz_dev/swagger/model/schema/fields.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/schema/fields.py:0: error: Class cannot subclass "BooleanType" (has type "Any") [misc] +src/aaz_dev/swagger/model/schema/fields.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/schema/fields.py:0: error: Class cannot subclass "StringType" (has type "Any") [misc] +src/aaz_dev/swagger/model/schema/fields.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/schema/fields.py:0: error: Class cannot subclass "StringType" (has type "Any") [misc] +src/aaz_dev/swagger/model/schema/fields.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/schema/fields.py:0: error: Class cannot subclass "BooleanType" (has type "Any") [misc] +src/aaz_dev/swagger/model/schema/fields.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/schema/fields.py:0: error: Class cannot subclass "StringType" (has type "Any") [misc] +src/aaz_dev/swagger/model/schema/fields.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/schema/fields.py:0: error: Class cannot subclass "StringType" (has type "Any") [misc] +src/aaz_dev/swagger/model/schema/fields.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/schema/fields.py:0: error: Class cannot subclass "StringType" (has type "Any") [misc] +src/aaz_dev/swagger/model/schema/fields.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/schema/fields.py:0: error: Class cannot subclass "StringType" (has type "Any") [misc] +src/aaz_dev/swagger/model/schema/fields.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/schema/external_documentation.py:0: error: Class cannot subclass "Model" (has type "Any") [misc] +src/aaz_dev/swagger/model/schema/contact.py:0: error: Class cannot subclass "Model" (has type "Any") [misc] +src/aaz_dev/swagger/controller/specs_manager.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/controller/specs_manager.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/swagger/controller/specs_manager.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/controller/specs_manager.py:0: error: Call to untyped function "get_resource_providers" in typed context [no-untyped-call] +src/aaz_dev/swagger/controller/specs_manager.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/controller/specs_manager.py:0: error: Call to untyped function "get_resource_providers" in typed context [no-untyped-call] +src/aaz_dev/swagger/controller/specs_manager.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/controller/specs_manager.py:0: error: Call to untyped function "get_openapi_resource_provider" in typed context [no-untyped-call] +src/aaz_dev/swagger/controller/specs_manager.py:0: error: Call to untyped function "get_resource_map" in typed context [no-untyped-call] +src/aaz_dev/swagger/controller/specs_manager.py:0: error: Need type annotation for "resource_op_group_map" [var-annotated] +src/aaz_dev/swagger/controller/specs_manager.py:0: error: Call to untyped function "get_resource_op_group_name" in typed context [no-untyped-call] +src/aaz_dev/swagger/controller/specs_manager.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/controller/specs_manager.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/controller/specs_manager.py:0: error: Call to untyped function "get_openapi_resource_provider" in typed context [no-untyped-call] +src/aaz_dev/swagger/controller/specs_manager.py:0: error: Call to untyped function "get_resource_providers" in typed context [no-untyped-call] +src/aaz_dev/swagger/controller/specs_manager.py:0: error: Call to untyped function "get_resource_map" in typed context [no-untyped-call] +src/aaz_dev/swagger/controller/specs_manager.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/controller/specs_manager.py:0: error: Call to untyped function "get_openapi_resource_provider" in typed context [no-untyped-call] +src/aaz_dev/swagger/controller/specs_manager.py:0: error: Call to untyped function "get_resource_providers" in typed context [no-untyped-call] +src/aaz_dev/swagger/controller/specs_manager.py:0: error: Call to untyped function "get_resource_map" in typed context [no-untyped-call] +src/aaz_dev/swagger/controller/specs_manager.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/controller/specs_manager.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/swagger/controller/specs_manager.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/swagger/controller/specs_manager.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/controller/specs_manager.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/controller/specs_manager.py:0: error: Function is missing a type annotation for one or more arguments [no-untyped-def] +src/aaz_dev/swagger/controller/specs_manager.py:0: error: Call to untyped function "get_module" in typed context [no-untyped-call] +src/aaz_dev/swagger/controller/specs_manager.py:0: error: Call to untyped function "SwaggerSpecsModuleManager" in typed context [no-untyped-call] +src/aaz_dev/swagger/controller/specs_manager.py:0: error: Returning Any from function declared to return "SwaggerSpecsModuleManager" [no-any-return] +src/aaz_dev/swagger/controller/specs_manager.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/controller/specs_manager.py:0: error: Call to untyped function "get_resource_in_version" in typed context [no-untyped-call] +src/aaz_dev/swagger/controller/example_generator.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/swagger/controller/example_generator.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/swagger/controller/example_generator.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/controller/example_generator.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/controller/example_generator.py:0: error: Call to untyped function "generate_examples" in typed context [no-untyped-call] +src/aaz_dev/swagger/controller/example_generator.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/tests/spec_tests/template_render_test.py:0: error: Class cannot subclass "CommandTestCase" (has type "Any") [misc] +src/aaz_dev/command/tests/spec_tests/template_render_test.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/command/tests/spec_tests/template_render_test.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/command/tests/spec_tests/template_render_test.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/command/tests/spec_tests/template_render_test.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/command/tests/spec_tests/template_render_test.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/command/tests/spec_tests/template_render_test.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/command/tests/spec_tests/template_render_test.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/command/tests/spec_tests/template_render_test.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/command/tests/editor_tests/test_serialize_shorthand.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/command/tests/editor_tests/test_serialize_shorthand.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/command/tests/editor_tests/test_serialize_shorthand.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/command/tests/editor_tests/test_serialize_shorthand.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/command/tests/editor_tests/test_serialize_shorthand.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/command/tests/editor_tests/test_serialize_shorthand.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/command/tests/configuration_tests/test_generate_args.py:0: error: Class cannot subclass "CommandTestCase" (has type "Any") [misc] +src/aaz_dev/command/tests/configuration_tests/test_generate_args.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/tests/configuration_tests/test_generate_args.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/tests/api_tests/test_specs.py:0: error: Class cannot subclass "CommandTestCase" (has type "Any") [misc] +src/aaz_dev/command/tests/api_tests/test_specs.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/specs/_resource.py:0: error: Class cannot subclass "Model" (has type "Any") [misc] +src/aaz_dev/command/model/editor/_workspace.py:0: error: Class cannot subclass "Model" (has type "Any") [misc] +src/aaz_dev/command/model/editor/_workspace.py:0: error: Class cannot subclass "Model" (has type "Any") [misc] +src/aaz_dev/command/model/editor/_workspace.py:0: error: Class cannot subclass "Model" (has type "Any") [misc] +src/aaz_dev/command/model/configuration/_help.py:0: error: Class cannot subclass "Model" (has type "Any") [misc] +src/aaz_dev/command/model/configuration/_example.py:0: error: Class cannot subclass "Model" (has type "Any") [misc] +src/aaz_dev/command/controller/shorthand.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/shorthand.py:0: error: Call to untyped function "dfs" in typed context [no-untyped-call] +src/aaz_dev/command/controller/shorthand.py:0: error: Call to untyped function "dfs" in typed context [no-untyped-call] +src/aaz_dev/command/controller/shorthand.py:0: error: Returning Any from function declared to return "str" [no-any-return] +src/aaz_dev/command/controller/shorthand.py:0: error: Call to untyped function "dfs" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/main_tests/template_render_test.py:0: error: Class cannot subclass "CommandTestCase" (has type "Any") [misc] +src/aaz_dev/cli/tests/main_tests/template_render_test.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/main_tests/template_render_test.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/cli/tests/main_tests/template_render_test.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/main_tests/template_render_test.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/cli/tests/main_tests/output/new-module/tests/latest/test_new_module.py:0: error: Name "ScenarioTest" is not defined [name-defined] +src/aaz_dev/cli/tests/main_tests/output/new-module/tests/latest/test_new_module.py:0: error: Class cannot subclass "ScenarioTest" (has type "Any") [misc] +src/aaz_dev/cli/tests/main_tests/output/new-module/commands.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/main_tests/output/new-module/_params.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/main_tests/output/new-module/__init__.py:0: error: Class cannot subclass "AzCommandsLoader" (has type "Any") [misc] +src/aaz_dev/cli/tests/main_tests/output/new-module/__init__.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/main_tests/output/new-module/__init__.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/main_tests/output/new-module/__init__.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/main_tests/output/monitor/__init__.py:0: error: Class cannot subclass "AzArgumentContext" (has type "Any") [misc] +src/aaz_dev/cli/tests/main_tests/output/monitor/__init__.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/main_tests/output/monitor/__init__.py:0: error: Class cannot subclass "AzCommandsLoader" (has type "Any") [misc] +src/aaz_dev/cli/tests/main_tests/output/monitor/__init__.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/main_tests/output/monitor/__init__.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/main_tests/output/monitor/__init__.py:0: error: Module "aaz_dev.cli.tests.main_tests.output.monitor" has no attribute "aaz" [attr-defined] +src/aaz_dev/cli/tests/main_tests/output/monitor/__init__.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/main_tests/output/interactive/__init__.py:0: error: Class cannot subclass "AzCommandsLoader" (has type "Any") [misc] +src/aaz_dev/cli/tests/main_tests/output/interactive/__init__.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/main_tests/output/interactive/__init__.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/main_tests/output/interactive/__init__.py:0: error: Module "aaz_dev.cli.tests.main_tests.output.interactive" has no attribute "aaz" [attr-defined] +src/aaz_dev/cli/tests/main_tests/output/interactive/__init__.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/main_tests/output/hd_insight/tests/latest/test_aaz_render.py:0: error: Name "ScenarioTest" is not defined [name-defined] +src/aaz_dev/cli/tests/main_tests/output/hd_insight/tests/latest/test_aaz_render.py:0: error: Class cannot subclass "ScenarioTest" (has type "Any") [misc] +src/aaz_dev/cli/tests/main_tests/output/hd_insight/commands.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/main_tests/output/hd_insight/_params.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/main_tests/output/hd_insight/__init__.py:0: error: Class cannot subclass "AzCommandsLoader" (has type "Any") [misc] +src/aaz_dev/cli/tests/main_tests/output/hd_insight/__init__.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/main_tests/output/hd_insight/__init__.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/main_tests/output/hd_insight/__init__.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/extension_tests/template_render_test.py:0: error: Class cannot subclass "CommandTestCase" (has type "Any") [misc] +src/aaz_dev/cli/tests/extension_tests/template_render_test.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/extension_tests/template_render_test.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/cli/tests/extension_tests/template_render_test.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/extension_tests/template_render_test.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/cli/tests/extension_tests/template_render_test.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/extension_tests/template_render_test.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/cli/tests/extension_tests/output/new-extension/setup.py:0: error: Need type annotation for "DEPENDENCIES" (hint: "DEPENDENCIES: list[] = ...") [var-annotated] +src/aaz_dev/cli/tests/extension_tests/output/new-extension/azext_new_extension/tests/latest/test_new_extension.py:0: error: Name "ScenarioTest" is not defined [name-defined] +src/aaz_dev/cli/tests/extension_tests/output/new-extension/azext_new_extension/tests/latest/test_new_extension.py:0: error: Class cannot subclass "ScenarioTest" (has type "Any") [misc] +src/aaz_dev/cli/tests/extension_tests/output/new-extension/azext_new_extension/commands.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/extension_tests/output/new-extension/azext_new_extension/_params.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/extension_tests/output/new-extension/azext_new_extension/__init__.py:0: error: Class cannot subclass "AzCommandsLoader" (has type "Any") [misc] +src/aaz_dev/cli/tests/extension_tests/output/new-extension/azext_new_extension/__init__.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/extension_tests/output/new-extension/azext_new_extension/__init__.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/extension_tests/output/new-extension/azext_new_extension/__init__.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/extension_tests/output/az-firewall/setup.py:0: error: Need type annotation for "DEPENDENCIES" (hint: "DEPENDENCIES: list[] = ...") [var-annotated] +src/aaz_dev/cli/tests/extension_tests/output/az-firewall/azext_az_firewall/tests/latest/test_aaz_render.py:0: error: Name "ScenarioTest" is not defined [name-defined] +src/aaz_dev/cli/tests/extension_tests/output/az-firewall/azext_az_firewall/tests/latest/test_aaz_render.py:0: error: Class cannot subclass "ScenarioTest" (has type "Any") [misc] +src/aaz_dev/cli/tests/extension_tests/output/az-firewall/azext_az_firewall/commands.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/extension_tests/output/az-firewall/azext_az_firewall/_params.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/extension_tests/output/az-firewall/azext_az_firewall/__init__.py:0: error: Class cannot subclass "AzCommandsLoader" (has type "Any") [misc] +src/aaz_dev/cli/tests/extension_tests/output/az-firewall/azext_az_firewall/__init__.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/extension_tests/output/az-firewall/azext_az_firewall/__init__.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/extension_tests/output/az-firewall/azext_az_firewall/__init__.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/extension_tests/output/application-insights/azext_applicationinsights/__init__.py:0: error: Class cannot subclass "AzCommandsLoader" (has type "Any") [misc] +src/aaz_dev/cli/tests/extension_tests/output/application-insights/azext_applicationinsights/__init__.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/extension_tests/output/application-insights/azext_applicationinsights/__init__.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/extension_tests/output/application-insights/azext_applicationinsights/__init__.py:0: error: Module "aaz_dev.cli.tests.extension_tests.output.application-insights.azext_applicationinsights" has no attribute "aaz" [attr-defined] +src/aaz_dev/cli/tests/extension_tests/output/application-insights/azext_applicationinsights/__init__.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/common.py:0: error: Class cannot subclass "ApiTestCase" (has type "Any") [misc] +src/aaz_dev/cli/tests/common.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/common.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/common.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/cli/tests/common.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/common.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/common.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/common.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/common.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/common.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/common.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/common.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/common.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/common.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/common.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/common.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/vnet/_show.py:0: error: Name "register_command" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/vnet/_show.py:0: error: Name "AAZCommand" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/vnet/_show.py:0: error: Class cannot subclass "AAZCommand" (has type "Any") [misc] +src/aaz_dev/cli/tests/aaz_generator_tests/output/vnet/__cmd_group.py:0: error: Name "register_command_group" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/vnet/__cmd_group.py:0: error: Name "AAZCommandGroup" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/vnet/__cmd_group.py:0: error: Class cannot subclass "AAZCommandGroup" (has type "Any") [misc] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "register_command" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZCommand" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Class cannot subclass "AAZCommand" (has type "Any") [misc] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Call to untyped function "_execute_operations" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Call to untyped function "_output" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZStrArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZResourceGroupNameArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZStrArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZStrArgFormat" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZStrArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZListArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZStrArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZStrArgFormat" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZIntArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZIntArgFormat" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZObjectArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZObjectArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZObjectArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZObjectArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZIntArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZObjectArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZStrArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZStrArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZStrArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZListArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZObjectArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZStrArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZStrArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZObjectArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZStrArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZStrArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZStrArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZUuidArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZStrArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZStrArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZObjectArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZStrArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZUuidArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZListArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZDateTimeArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZBoolArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZStrArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZStrArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZObjectArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZObjectArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZObjectArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZStrArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZStrArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZListArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZStrArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "register_callback" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "register_callback" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "register_callback" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "register_callback" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZHttpOperation" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Class cannot subclass "AAZHttpOperation" (has type "Any") [misc] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Call to untyped function "on_200" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Call to untyped function "_build_schema_automation_rule_read" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZHttpOperation" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Class cannot subclass "AAZHttpOperation" (has type "Any") [misc] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Call to untyped function "on_200_201" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Call to untyped function "_build_schema_automation_rule_read" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZJsonInstanceUpdateOperation" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Class cannot subclass "AAZJsonInstanceUpdateOperation" (has type "Any") [misc] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Call to untyped function "_update_instance" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZListType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZIntType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZIntType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZListType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZListType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZBoolType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZListType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZGenericInstanceUpdateOperation" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Class cannot subclass "AAZGenericInstanceUpdateOperation" (has type "Any") [misc] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZListType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Call to untyped function "_build_schema_client_info_read" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Call to untyped function "_build_schema_client_info_read" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZIntType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZIntType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZListType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZListType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZBoolType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZListType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_update.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_show.py:0: error: Name "register_command" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_show.py:0: error: Name "AAZCommand" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_show.py:0: error: Class cannot subclass "AAZCommand" (has type "Any") [misc] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_show.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_show.py:0: error: Call to untyped function "_execute_operations" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_show.py:0: error: Call to untyped function "_output" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_show.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_show.py:0: error: Name "AAZStrArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_show.py:0: error: Name "AAZResourceGroupNameArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_show.py:0: error: Name "AAZStrArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_show.py:0: error: Name "AAZStrArgFormat" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_show.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_show.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_show.py:0: error: Name "register_callback" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_show.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_show.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_show.py:0: error: Name "register_callback" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_show.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_show.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_show.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_show.py:0: error: Name "AAZHttpOperation" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_show.py:0: error: Class cannot subclass "AAZHttpOperation" (has type "Any") [misc] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_show.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_show.py:0: error: Call to untyped function "on_200" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_show.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_show.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_show.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_show.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_show.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_show.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_show.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_show.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_show.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_show.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_show.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_show.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_show.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_show.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_show.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_show.py:0: error: Name "AAZListType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_show.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_show.py:0: error: Call to untyped function "_build_schema_client_info_read" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_show.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_show.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_show.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_show.py:0: error: Call to untyped function "_build_schema_client_info_read" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_show.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_show.py:0: error: Name "AAZIntType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_show.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_show.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_show.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_show.py:0: error: Name "AAZIntType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_show.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_show.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_show.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_show.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_show.py:0: error: Name "AAZListType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_show.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_show.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_show.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_show.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_show.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_show.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_show.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_show.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_show.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_show.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_show.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_show.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_show.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_show.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_show.py:0: error: Name "AAZListType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_show.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_show.py:0: error: Name "AAZBoolType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_show.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_show.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_show.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_show.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_show.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_show.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_show.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_show.py:0: error: Name "AAZListType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_show.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_show.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_show.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_show.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_show.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_show.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_show.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_show.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_show.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_show.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_show.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_show.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_show.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_list.py:0: error: Name "register_command" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_list.py:0: error: Name "AAZCommand" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_list.py:0: error: Class cannot subclass "AAZCommand" (has type "Any") [misc] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_list.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_list.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_list.py:0: error: Name "AAZResourceGroupNameArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_list.py:0: error: Name "AAZStrArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_list.py:0: error: Name "AAZStrArgFormat" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_list.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_list.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_list.py:0: error: Name "register_callback" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_list.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_list.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_list.py:0: error: Name "register_callback" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_list.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_list.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_list.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_list.py:0: error: Name "AAZHttpOperation" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_list.py:0: error: Class cannot subclass "AAZHttpOperation" (has type "Any") [misc] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_list.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_list.py:0: error: Call to untyped function "on_200" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_list.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_list.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_list.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_list.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_list.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_list.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_list.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_list.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_list.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_list.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_list.py:0: error: Name "AAZListType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_list.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_list.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_list.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_list.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_list.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_list.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_list.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_list.py:0: error: Name "AAZListType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_list.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_list.py:0: error: Call to untyped function "_build_schema_client_info_read" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_list.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_list.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_list.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_list.py:0: error: Call to untyped function "_build_schema_client_info_read" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_list.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_list.py:0: error: Name "AAZIntType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_list.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_list.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_list.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_list.py:0: error: Name "AAZIntType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_list.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_list.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_list.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_list.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_list.py:0: error: Name "AAZListType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_list.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_list.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_list.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_list.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_list.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_list.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_list.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_list.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_list.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_list.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_list.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_list.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_list.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_list.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_list.py:0: error: Name "AAZListType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_list.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_list.py:0: error: Name "AAZBoolType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_list.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_list.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_list.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_list.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_list.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_list.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_list.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_list.py:0: error: Name "AAZListType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_list.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_list.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_list.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_list.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_list.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_list.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_list.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_list.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_list.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_list.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_list.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_list.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_list.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_delete.py:0: error: Name "register_command" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_delete.py:0: error: Name "AAZCommand" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_delete.py:0: error: Class cannot subclass "AAZCommand" (has type "Any") [misc] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_delete.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_delete.py:0: error: Call to untyped function "_execute_operations" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_delete.py:0: error: Call to untyped function "_output" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_delete.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_delete.py:0: error: Name "AAZStrArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_delete.py:0: error: Name "AAZResourceGroupNameArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_delete.py:0: error: Name "AAZStrArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_delete.py:0: error: Name "AAZStrArgFormat" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_delete.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_delete.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_delete.py:0: error: Name "register_callback" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_delete.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_delete.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_delete.py:0: error: Name "register_callback" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_delete.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_delete.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_delete.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_delete.py:0: error: Name "AAZHttpOperation" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_delete.py:0: error: Class cannot subclass "AAZHttpOperation" (has type "Any") [misc] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_delete.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_delete.py:0: error: Call to untyped function "on_200_204" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_delete.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_delete.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_delete.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_delete.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_delete.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_delete.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "register_command" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "AAZCommand" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Class cannot subclass "AAZCommand" (has type "Any") [misc] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Call to untyped function "_execute_operations" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Call to untyped function "_output" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "AAZStrArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "AAZResourceGroupNameArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "AAZStrArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "AAZStrArgFormat" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "AAZStrArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "AAZListArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "AAZStrArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "AAZStrArgFormat" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "AAZIntArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "AAZIntArgFormat" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "AAZObjectArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "AAZObjectArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "AAZObjectArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "AAZObjectArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "AAZIntArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "AAZObjectArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "AAZStrArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "AAZStrArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "AAZStrArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "AAZListArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "AAZObjectArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "AAZStrArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "AAZStrArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "AAZObjectArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "AAZStrArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "AAZStrArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "AAZStrArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "AAZUuidArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "AAZStrArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "AAZStrArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "AAZObjectArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "AAZStrArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "AAZUuidArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "AAZListArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "AAZDateTimeArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "AAZBoolArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "AAZStrArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "AAZStrArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "AAZObjectArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "AAZObjectArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "AAZObjectArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "AAZStrArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "AAZStrArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "AAZListArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "AAZStrArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "register_callback" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "register_callback" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "AAZHttpOperation" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Class cannot subclass "AAZHttpOperation" (has type "Any") [misc] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Call to untyped function "on_200_201" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "AAZListType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "AAZIntType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "AAZIntType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "AAZListType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "AAZListType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "AAZBoolType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "AAZListType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "AAZListType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Call to untyped function "_build_schema_client_info_read" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Call to untyped function "_build_schema_client_info_read" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "AAZIntType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "AAZIntType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "AAZListType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "AAZListType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "AAZBoolType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "AAZListType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/sentinel/automation_rule/_create.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_update.py:0: error: Name "register_command" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_update.py:0: error: Name "AAZCommand" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_update.py:0: error: Class cannot subclass "AAZCommand" (has type "Any") [misc] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_update.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_update.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_update.py:0: error: Name "AAZStrArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_update.py:0: error: Name "AAZResourceGroupNameArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_update.py:0: error: Name "AAZStrArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_update.py:0: error: Name "AAZStrArgFormat" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_update.py:0: error: Name "AAZBoolArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_update.py:0: error: Name "AAZBoolArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_update.py:0: error: Name "AAZBoolArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_update.py:0: error: Name "AAZObjectArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_update.py:0: error: Call to untyped function "_build_args_address_space_update" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_update.py:0: error: Name "AAZObjectArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_update.py:0: error: Name "AAZObjectArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_update.py:0: error: Call to untyped function "_build_args_address_space_update" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_update.py:0: error: Name "AAZObjectArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_update.py:0: error: Name "AAZBoolArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_update.py:0: error: Name "AAZStrArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_update.py:0: error: Name "AAZStrArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_update.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_update.py:0: error: Name "AAZObjectArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_update.py:0: error: Name "AAZListArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_update.py:0: error: Name "AAZStrArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_update.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_update.py:0: error: Name "register_callback" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_update.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_update.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_update.py:0: error: Name "register_callback" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_update.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_update.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_update.py:0: error: Name "register_callback" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_update.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_update.py:0: error: Name "register_callback" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_update.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_update.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_update.py:0: error: Name "AAZHttpOperation" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_update.py:0: error: Class cannot subclass "AAZHttpOperation" (has type "Any") [misc] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_update.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_update.py:0: error: Call to untyped function "on_200" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_update.py:0: error: Call to untyped function "on_204" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_update.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_update.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_update.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_update.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_update.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_update.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_update.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_update.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_update.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_update.py:0: error: Call to untyped function "_build_schema_virtual_network_peering_read" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_update.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_update.py:0: error: Name "AAZHttpOperation" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_update.py:0: error: Class cannot subclass "AAZHttpOperation" (has type "Any") [misc] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_update.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_update.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_update.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_update.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_update.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_update.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_update.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_update.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_update.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_update.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_update.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_update.py:0: error: Call to untyped function "_build_schema_virtual_network_peering_read" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_update.py:0: error: Name "AAZJsonInstanceUpdateOperation" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_update.py:0: error: Class cannot subclass "AAZJsonInstanceUpdateOperation" (has type "Any") [misc] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_update.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_update.py:0: error: Call to untyped function "_update_instance" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_update.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_update.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_update.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_update.py:0: error: Name "AAZBoolType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_update.py:0: error: Name "AAZBoolType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_update.py:0: error: Name "AAZBoolType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_update.py:0: error: Call to untyped function "_build_schema_address_space_update" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_update.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_update.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_update.py:0: error: Call to untyped function "_build_schema_address_space_update" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_update.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_update.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_update.py:0: error: Name "AAZBoolType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_update.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_update.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_update.py:0: error: Name "AAZGenericInstanceUpdateOperation" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_update.py:0: error: Class cannot subclass "AAZGenericInstanceUpdateOperation" (has type "Any") [misc] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_update.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_update.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_update.py:0: error: Name "AAZListType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_update.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_update.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_update.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_update.py:0: error: Name "AAZListType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_update.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_update.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_update.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_update.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_update.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_update.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_update.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_update.py:0: error: Name "AAZBoolType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_update.py:0: error: Name "AAZBoolType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_update.py:0: error: Name "AAZBoolType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_update.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_update.py:0: error: Call to untyped function "_build_schema_address_space_read" of "_UpdateHelper" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_update.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_update.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_update.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_update.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_update.py:0: error: Call to untyped function "_build_schema_address_space_read" of "_UpdateHelper" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_update.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_update.py:0: error: Name "AAZBoolType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_update.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_update.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_show.py:0: error: Name "register_command" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_show.py:0: error: Name "AAZCommand" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_show.py:0: error: Class cannot subclass "AAZCommand" (has type "Any") [misc] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_show.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_show.py:0: error: Call to untyped function "_execute_operations" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_show.py:0: error: Call to untyped function "_output" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_show.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_show.py:0: error: Name "AAZStrArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_show.py:0: error: Name "AAZResourceGroupNameArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_show.py:0: error: Name "AAZStrArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_show.py:0: error: Name "AAZStrArgFormat" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_show.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_show.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_show.py:0: error: Name "register_callback" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_show.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_show.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_show.py:0: error: Name "register_callback" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_show.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_show.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_show.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_show.py:0: error: Name "AAZHttpOperation" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_show.py:0: error: Class cannot subclass "AAZHttpOperation" (has type "Any") [misc] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_show.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_show.py:0: error: Call to untyped function "on_200" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_show.py:0: error: Call to untyped function "on_204" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_show.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_show.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_show.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_show.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_show.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_show.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_show.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_show.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_show.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_show.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_show.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_show.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_show.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_show.py:0: error: Name "AAZBoolType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_show.py:0: error: Name "AAZBoolType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_show.py:0: error: Name "AAZBoolType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_show.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_show.py:0: error: Call to untyped function "_build_schema_address_space_read" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_show.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_show.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_show.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_show.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_show.py:0: error: Call to untyped function "_build_schema_address_space_read" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_show.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_show.py:0: error: Name "AAZBoolType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_show.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_show.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_show.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_show.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_show.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_show.py:0: error: Name "AAZListType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_show.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_list.py:0: error: Name "register_command" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_list.py:0: error: Name "AAZCommand" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_list.py:0: error: Class cannot subclass "AAZCommand" (has type "Any") [misc] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_list.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_list.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_list.py:0: error: Name "AAZResourceGroupNameArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_list.py:0: error: Name "AAZStrArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_list.py:0: error: Name "AAZStrArgFormat" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_list.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_list.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_list.py:0: error: Name "register_callback" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_list.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_list.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_list.py:0: error: Name "register_callback" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_list.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_list.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_list.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_list.py:0: error: Name "AAZHttpOperation" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_list.py:0: error: Class cannot subclass "AAZHttpOperation" (has type "Any") [misc] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_list.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_list.py:0: error: Call to untyped function "on_200" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_list.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_list.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_list.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_list.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_list.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_list.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_list.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_list.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_list.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_list.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_list.py:0: error: Name "AAZListType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_list.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_list.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_list.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_list.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_list.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_list.py:0: error: Name "AAZBoolType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_list.py:0: error: Name "AAZBoolType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_list.py:0: error: Name "AAZBoolType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_list.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_list.py:0: error: Call to untyped function "_build_schema_address_space_read" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_list.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_list.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_list.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_list.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_list.py:0: error: Call to untyped function "_build_schema_address_space_read" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_list.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_list.py:0: error: Name "AAZBoolType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_list.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_list.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_list.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_list.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_list.py:0: error: Name "AAZListType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_list.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_delete.py:0: error: Name "register_command" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_delete.py:0: error: Name "AAZCommand" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_delete.py:0: error: Class cannot subclass "AAZCommand" (has type "Any") [misc] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_delete.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_delete.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_delete.py:0: error: Name "AAZStrArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_delete.py:0: error: Name "AAZResourceGroupNameArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_delete.py:0: error: Name "AAZStrArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_delete.py:0: error: Name "AAZStrArgFormat" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_delete.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_delete.py:0: error: Name "register_callback" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_delete.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_delete.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_delete.py:0: error: Name "register_callback" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_delete.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_delete.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_delete.py:0: error: Name "AAZHttpOperation" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_delete.py:0: error: Class cannot subclass "AAZHttpOperation" (has type "Any") [misc] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_delete.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_delete.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_delete.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_delete.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_delete.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_delete.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_delete.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_create.py:0: error: Name "register_command" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_create.py:0: error: Name "AAZCommand" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_create.py:0: error: Class cannot subclass "AAZCommand" (has type "Any") [misc] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_create.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_create.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_create.py:0: error: Name "AAZStrArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_create.py:0: error: Name "AAZResourceGroupNameArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_create.py:0: error: Name "AAZStrArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_create.py:0: error: Name "AAZStrArgFormat" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_create.py:0: error: Name "AAZBoolArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_create.py:0: error: Name "AAZBoolArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_create.py:0: error: Name "AAZBoolArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_create.py:0: error: Name "AAZObjectArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_create.py:0: error: Call to untyped function "_build_args_address_space_create" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_create.py:0: error: Name "AAZObjectArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_create.py:0: error: Name "AAZObjectArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_create.py:0: error: Call to untyped function "_build_args_address_space_create" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_create.py:0: error: Name "AAZObjectArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_create.py:0: error: Name "AAZBoolArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_create.py:0: error: Name "AAZStrArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_create.py:0: error: Name "AAZStrArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_create.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_create.py:0: error: Name "AAZObjectArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_create.py:0: error: Name "AAZListArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_create.py:0: error: Name "AAZStrArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_create.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_create.py:0: error: Name "register_callback" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_create.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_create.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_create.py:0: error: Name "register_callback" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_create.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_create.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_create.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_create.py:0: error: Name "AAZHttpOperation" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_create.py:0: error: Class cannot subclass "AAZHttpOperation" (has type "Any") [misc] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_create.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_create.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_create.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_create.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_create.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_create.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_create.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_create.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_create.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_create.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_create.py:0: error: Name "AAZBoolType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_create.py:0: error: Name "AAZBoolType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_create.py:0: error: Name "AAZBoolType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_create.py:0: error: Call to untyped function "_build_schema_address_space_create" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_create.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_create.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_create.py:0: error: Call to untyped function "_build_schema_address_space_create" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_create.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_create.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_create.py:0: error: Name "AAZBoolType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_create.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_create.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_create.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_create.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_create.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_create.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_create.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_create.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_create.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_create.py:0: error: Name "AAZBoolType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_create.py:0: error: Name "AAZBoolType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_create.py:0: error: Name "AAZBoolType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_create.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_create.py:0: error: Call to untyped function "_build_schema_address_space_read" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_create.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_create.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_create.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_create.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_create.py:0: error: Call to untyped function "_build_schema_address_space_read" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_create.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_create.py:0: error: Name "AAZBoolType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_create.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_create.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_create.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_create.py:0: error: Name "AAZListType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_create.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_create.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_create.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_create.py:0: error: Name "AAZListType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/vnet_peering/_create.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Name "register_command" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Name "AAZCommand" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Class cannot subclass "AAZCommand" (has type "Any") [misc] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Name "AAZResourceGroupNameArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Name "AAZStrArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Name "AAZStrArgFormat" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Name "AAZListArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Name "AAZStrArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Name "AAZObjectArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Name "AAZStrArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Name "AAZObjectArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Name "AAZDictArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Name "AAZObjectArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Name "AAZUuidArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Name "AAZUuidArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Name "AAZObjectArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Call to untyped function "_build_args_workspace_custom_string_parameter_update" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Name "AAZObjectArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Call to untyped function "_build_args_workspace_custom_string_parameter_update" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Name "AAZObjectArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Call to untyped function "_build_args_workspace_custom_string_parameter_update" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Name "AAZObjectArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Call to untyped function "_build_args_workspace_custom_string_parameter_update" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Name "AAZObjectArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Call to untyped function "_build_args_workspace_custom_boolean_parameter_update" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Name "AAZObjectArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Name "AAZObjectArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Call to untyped function "_build_args_workspace_custom_string_parameter_update" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Name "AAZObjectArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Call to untyped function "_build_args_workspace_custom_string_parameter_update" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Name "AAZObjectArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Call to untyped function "_build_args_workspace_custom_string_parameter_update" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Name "AAZObjectArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Call to untyped function "_build_args_workspace_custom_boolean_parameter_update" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Name "AAZObjectArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Call to untyped function "_build_args_workspace_custom_string_parameter_update" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Name "AAZObjectArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Call to untyped function "_build_args_workspace_custom_boolean_parameter_update" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Name "AAZObjectArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Call to untyped function "_build_args_workspace_custom_string_parameter_update" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Name "AAZObjectArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Call to untyped function "_build_args_workspace_custom_string_parameter_update" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Name "AAZObjectArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Call to untyped function "_build_args_workspace_custom_string_parameter_update" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Name "AAZObjectArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Name "AAZStrArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Name "AAZStrArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Name "AAZStrArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Name "AAZStrArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Name "AAZStrArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Name "AAZStrArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Name "AAZStrArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Name "AAZObjectArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Name "AAZBoolArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Name "AAZObjectArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Name "AAZStrArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Name "register_callback" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Name "register_callback" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Name "register_callback" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Name "register_callback" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Name "AAZHttpOperation" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Class cannot subclass "AAZHttpOperation" (has type "Any") [misc] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Call to untyped function "on_200" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Call to untyped function "_build_schema_workspace_read" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Name "AAZHttpOperation" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Class cannot subclass "AAZHttpOperation" (has type "Any") [misc] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Call to untyped function "_build_schema_workspace_read" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Name "AAZJsonInstanceUpdateOperation" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Class cannot subclass "AAZJsonInstanceUpdateOperation" (has type "Any") [misc] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Call to untyped function "_update_instance" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Name "AAZDictType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Name "AAZListType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Call to untyped function "_build_schema_workspace_custom_string_parameter_update" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Call to untyped function "_build_schema_workspace_custom_string_parameter_update" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Call to untyped function "_build_schema_workspace_custom_string_parameter_update" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Call to untyped function "_build_schema_workspace_custom_string_parameter_update" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Call to untyped function "_build_schema_workspace_custom_boolean_parameter_update" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Call to untyped function "_build_schema_workspace_custom_string_parameter_update" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Call to untyped function "_build_schema_workspace_custom_string_parameter_update" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Call to untyped function "_build_schema_workspace_custom_string_parameter_update" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Call to untyped function "_build_schema_workspace_custom_boolean_parameter_update" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Call to untyped function "_build_schema_workspace_custom_string_parameter_update" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Call to untyped function "_build_schema_workspace_custom_boolean_parameter_update" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Call to untyped function "_build_schema_workspace_custom_string_parameter_update" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Call to untyped function "_build_schema_workspace_custom_string_parameter_update" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Call to untyped function "_build_schema_workspace_custom_string_parameter_update" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Name "AAZGenericInstanceUpdateOperation" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Class cannot subclass "AAZGenericInstanceUpdateOperation" (has type "Any") [misc] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Name "AAZBoolType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Name "AAZBoolType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Name "AAZDictType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Name "AAZListType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Call to untyped function "_build_schema_created_by_read" of "_UpdateHelper" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Call to untyped function "_build_schema_created_by_read" of "_UpdateHelper" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Call to untyped function "_build_schema_workspace_custom_string_parameter_read" of "_UpdateHelper" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Call to untyped function "_build_schema_workspace_custom_string_parameter_read" of "_UpdateHelper" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Call to untyped function "_build_schema_workspace_custom_string_parameter_read" of "_UpdateHelper" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Call to untyped function "_build_schema_workspace_custom_string_parameter_read" of "_UpdateHelper" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Call to untyped function "_build_schema_workspace_custom_boolean_parameter_read" of "_UpdateHelper" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Call to untyped function "_build_schema_workspace_custom_string_parameter_read" of "_UpdateHelper" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Call to untyped function "_build_schema_workspace_custom_string_parameter_read" of "_UpdateHelper" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Call to untyped function "_build_schema_workspace_custom_string_parameter_read" of "_UpdateHelper" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Call to untyped function "_build_schema_workspace_custom_boolean_parameter_read" of "_UpdateHelper" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Call to untyped function "_build_schema_workspace_custom_string_parameter_read" of "_UpdateHelper" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Call to untyped function "_build_schema_workspace_custom_boolean_parameter_read" of "_UpdateHelper" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Call to untyped function "_build_schema_workspace_custom_string_parameter_read" of "_UpdateHelper" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Call to untyped function "_build_schema_workspace_custom_string_parameter_read" of "_UpdateHelper" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Call to untyped function "_build_schema_workspace_custom_string_parameter_read" of "_UpdateHelper" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Name "AAZFreeFormDictType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_update.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_show.py:0: error: Name "register_command" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_show.py:0: error: Name "AAZCommand" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_show.py:0: error: Class cannot subclass "AAZCommand" (has type "Any") [misc] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_show.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_show.py:0: error: Call to untyped function "_execute_operations" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_show.py:0: error: Call to untyped function "_output" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_show.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_show.py:0: error: Name "AAZResourceGroupNameArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_show.py:0: error: Name "AAZStrArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_show.py:0: error: Name "AAZStrArgFormat" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_show.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_show.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_show.py:0: error: Name "register_callback" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_show.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_show.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_show.py:0: error: Name "register_callback" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_show.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_show.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_show.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_show.py:0: error: Name "AAZHttpOperation" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_show.py:0: error: Class cannot subclass "AAZHttpOperation" (has type "Any") [misc] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_show.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_show.py:0: error: Call to untyped function "on_200" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_show.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_show.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_show.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_show.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_show.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_show.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_show.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_show.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_show.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_show.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_show.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_show.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_show.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_show.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_show.py:0: error: Name "AAZDictType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_show.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_show.py:0: error: Name "AAZListType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_show.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_show.py:0: error: Call to untyped function "_build_schema_created_by_read" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_show.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_show.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_show.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_show.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_show.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_show.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_show.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_show.py:0: error: Call to untyped function "_build_schema_created_by_read" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_show.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_show.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_show.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_show.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_show.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_show.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_show.py:0: error: Call to untyped function "_build_schema_workspace_custom_string_parameter_read" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_show.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_show.py:0: error: Call to untyped function "_build_schema_workspace_custom_string_parameter_read" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_show.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_show.py:0: error: Call to untyped function "_build_schema_workspace_custom_string_parameter_read" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_show.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_show.py:0: error: Call to untyped function "_build_schema_workspace_custom_string_parameter_read" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_show.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_show.py:0: error: Call to untyped function "_build_schema_workspace_custom_boolean_parameter_read" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_show.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_show.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_show.py:0: error: Call to untyped function "_build_schema_workspace_custom_string_parameter_read" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_show.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_show.py:0: error: Call to untyped function "_build_schema_workspace_custom_string_parameter_read" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_show.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_show.py:0: error: Call to untyped function "_build_schema_workspace_custom_string_parameter_read" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_show.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_show.py:0: error: Call to untyped function "_build_schema_workspace_custom_boolean_parameter_read" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_show.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_show.py:0: error: Call to untyped function "_build_schema_workspace_custom_string_parameter_read" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_show.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_show.py:0: error: Call to untyped function "_build_schema_workspace_custom_boolean_parameter_read" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_show.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_show.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_show.py:0: error: Call to untyped function "_build_schema_workspace_custom_string_parameter_read" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_show.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_show.py:0: error: Call to untyped function "_build_schema_workspace_custom_string_parameter_read" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_show.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_show.py:0: error: Call to untyped function "_build_schema_workspace_custom_string_parameter_read" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_show.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_show.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_show.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_show.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_show.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_show.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_show.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_show.py:0: error: Name "AAZFreeFormDictType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_show.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_show.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_show.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_show.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_show.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_show.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_show.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_show.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_show.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_show.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_show.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_show.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_show.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_show.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_show.py:0: error: Name "AAZBoolType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_show.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_show.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_show.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_show.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Name "register_command" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Name "AAZCommand" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Class cannot subclass "AAZCommand" (has type "Any") [misc] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Name "AAZResourceGroupNameArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Name "has_value" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Name "has_value" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Name "register_callback" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Name "register_callback" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Name "AAZHttpOperation" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Class cannot subclass "AAZHttpOperation" (has type "Any") [misc] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Call to untyped function "on_200" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Name "AAZListType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Name "AAZDictType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Name "AAZListType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Call to untyped function "_build_schema_created_by_read" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Call to untyped function "_build_schema_created_by_read" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Call to untyped function "_build_schema_workspace_custom_string_parameter_read" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Call to untyped function "_build_schema_workspace_custom_string_parameter_read" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Call to untyped function "_build_schema_workspace_custom_string_parameter_read" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Call to untyped function "_build_schema_workspace_custom_string_parameter_read" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Call to untyped function "_build_schema_workspace_custom_boolean_parameter_read" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Call to untyped function "_build_schema_workspace_custom_string_parameter_read" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Call to untyped function "_build_schema_workspace_custom_string_parameter_read" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Call to untyped function "_build_schema_workspace_custom_string_parameter_read" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Call to untyped function "_build_schema_workspace_custom_boolean_parameter_read" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Call to untyped function "_build_schema_workspace_custom_string_parameter_read" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Call to untyped function "_build_schema_workspace_custom_boolean_parameter_read" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Call to untyped function "_build_schema_workspace_custom_string_parameter_read" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Call to untyped function "_build_schema_workspace_custom_string_parameter_read" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Call to untyped function "_build_schema_workspace_custom_string_parameter_read" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Name "AAZFreeFormDictType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Name "AAZHttpOperation" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Class cannot subclass "AAZHttpOperation" (has type "Any") [misc] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Call to untyped function "on_200" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Name "AAZListType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Name "AAZDictType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Name "AAZListType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Call to untyped function "_build_schema_created_by_read" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Call to untyped function "_build_schema_created_by_read" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Call to untyped function "_build_schema_workspace_custom_string_parameter_read" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Call to untyped function "_build_schema_workspace_custom_string_parameter_read" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Call to untyped function "_build_schema_workspace_custom_string_parameter_read" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Call to untyped function "_build_schema_workspace_custom_string_parameter_read" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Call to untyped function "_build_schema_workspace_custom_boolean_parameter_read" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Call to untyped function "_build_schema_workspace_custom_string_parameter_read" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Call to untyped function "_build_schema_workspace_custom_string_parameter_read" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Call to untyped function "_build_schema_workspace_custom_string_parameter_read" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Call to untyped function "_build_schema_workspace_custom_boolean_parameter_read" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Call to untyped function "_build_schema_workspace_custom_string_parameter_read" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Call to untyped function "_build_schema_workspace_custom_boolean_parameter_read" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Call to untyped function "_build_schema_workspace_custom_string_parameter_read" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Call to untyped function "_build_schema_workspace_custom_string_parameter_read" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Call to untyped function "_build_schema_workspace_custom_string_parameter_read" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Name "AAZFreeFormDictType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Name "AAZBoolType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_list.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_delete.py:0: error: Name "register_command" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_delete.py:0: error: Name "AAZCommand" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_delete.py:0: error: Class cannot subclass "AAZCommand" (has type "Any") [misc] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_delete.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_delete.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_delete.py:0: error: Name "AAZResourceGroupNameArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_delete.py:0: error: Name "AAZStrArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_delete.py:0: error: Name "AAZStrArgFormat" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_delete.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_delete.py:0: error: Name "register_callback" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_delete.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_delete.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_delete.py:0: error: Name "register_callback" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_delete.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_delete.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_delete.py:0: error: Name "AAZHttpOperation" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_delete.py:0: error: Class cannot subclass "AAZHttpOperation" (has type "Any") [misc] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_delete.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_delete.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_delete.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_delete.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_delete.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_delete.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_delete.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Name "register_command" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Name "AAZCommand" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Class cannot subclass "AAZCommand" (has type "Any") [misc] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Name "AAZResourceGroupNameArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Name "AAZStrArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Name "AAZStrArgFormat" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Name "AAZResourceLocationArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Name "AAZResourceLocationArgFormat" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Name "AAZListArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Name "AAZStrArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Name "AAZObjectArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Name "AAZStrArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Name "AAZObjectArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Name "AAZDictArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Name "AAZObjectArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Name "AAZUuidArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Name "AAZUuidArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Name "AAZObjectArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Call to untyped function "_build_args_workspace_custom_string_parameter_create" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Name "AAZObjectArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Call to untyped function "_build_args_workspace_custom_string_parameter_create" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Name "AAZObjectArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Call to untyped function "_build_args_workspace_custom_string_parameter_create" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Name "AAZObjectArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Call to untyped function "_build_args_workspace_custom_string_parameter_create" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Name "AAZObjectArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Call to untyped function "_build_args_workspace_custom_boolean_parameter_create" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Name "AAZObjectArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Name "AAZObjectArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Call to untyped function "_build_args_workspace_custom_string_parameter_create" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Name "AAZObjectArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Call to untyped function "_build_args_workspace_custom_string_parameter_create" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Name "AAZObjectArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Call to untyped function "_build_args_workspace_custom_string_parameter_create" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Name "AAZObjectArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Call to untyped function "_build_args_workspace_custom_boolean_parameter_create" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Name "AAZObjectArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Call to untyped function "_build_args_workspace_custom_string_parameter_create" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Name "AAZObjectArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Call to untyped function "_build_args_workspace_custom_boolean_parameter_create" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Name "AAZObjectArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Call to untyped function "_build_args_workspace_custom_string_parameter_create" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Name "AAZObjectArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Call to untyped function "_build_args_workspace_custom_string_parameter_create" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Name "AAZObjectArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Call to untyped function "_build_args_workspace_custom_string_parameter_create" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Name "AAZObjectArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Name "AAZStrArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Name "AAZStrArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Name "AAZStrArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Name "AAZStrArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Name "AAZStrArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Name "AAZStrArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Name "AAZStrArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Name "AAZObjectArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Name "AAZBoolArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Name "AAZObjectArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Name "AAZStrArg" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Name "register_callback" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Name "register_callback" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Name "AAZHttpOperation" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Class cannot subclass "AAZHttpOperation" (has type "Any") [misc] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Name "AAZDictType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Name "AAZListType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Call to untyped function "_build_schema_workspace_custom_string_parameter_create" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Call to untyped function "_build_schema_workspace_custom_string_parameter_create" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Call to untyped function "_build_schema_workspace_custom_string_parameter_create" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Call to untyped function "_build_schema_workspace_custom_string_parameter_create" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Call to untyped function "_build_schema_workspace_custom_boolean_parameter_create" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Call to untyped function "_build_schema_workspace_custom_string_parameter_create" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Call to untyped function "_build_schema_workspace_custom_string_parameter_create" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Call to untyped function "_build_schema_workspace_custom_string_parameter_create" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Call to untyped function "_build_schema_workspace_custom_boolean_parameter_create" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Call to untyped function "_build_schema_workspace_custom_string_parameter_create" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Call to untyped function "_build_schema_workspace_custom_boolean_parameter_create" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Call to untyped function "_build_schema_workspace_custom_string_parameter_create" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Call to untyped function "_build_schema_workspace_custom_string_parameter_create" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Call to untyped function "_build_schema_workspace_custom_string_parameter_create" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Name "AAZDictType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Name "AAZListType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Call to untyped function "_build_schema_created_by_read" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Call to untyped function "_build_schema_created_by_read" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Call to untyped function "_build_schema_workspace_custom_string_parameter_read" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Call to untyped function "_build_schema_workspace_custom_string_parameter_read" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Call to untyped function "_build_schema_workspace_custom_string_parameter_read" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Call to untyped function "_build_schema_workspace_custom_string_parameter_read" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Call to untyped function "_build_schema_workspace_custom_boolean_parameter_read" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Call to untyped function "_build_schema_workspace_custom_string_parameter_read" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Call to untyped function "_build_schema_workspace_custom_string_parameter_read" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Call to untyped function "_build_schema_workspace_custom_string_parameter_read" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Call to untyped function "_build_schema_workspace_custom_boolean_parameter_read" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Call to untyped function "_build_schema_workspace_custom_string_parameter_read" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Call to untyped function "_build_schema_workspace_custom_boolean_parameter_read" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Call to untyped function "_build_schema_workspace_custom_string_parameter_read" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Call to untyped function "_build_schema_workspace_custom_string_parameter_read" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Call to untyped function "_build_schema_workspace_custom_string_parameter_read" in typed context [no-untyped-call] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Name "AAZFreeFormDictType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Name "AAZBoolType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Name "AAZBoolType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Name "AAZObjectType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/tests/aaz_generator_tests/output/databricks/workspace/_create.py:0: error: Name "AAZStrType" is not defined [name-defined] +src/aaz_dev/cli/model/view/_command.py:0: error: Class cannot subclass "Model" (has type "Any") [misc] +src/aaz_dev/cli/model/common/_fields.py:0: error: Class cannot subclass "StringType" (has type "Any") [misc] +src/aaz_dev/cli/model/common/_fields.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/model/common/_fields.py:0: error: Class cannot subclass "StringType" (has type "Any") [misc] +src/aaz_dev/cli/model/common/_fields.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/model/common/_fields.py:0: error: Class cannot subclass "ModelType" (has type "Any") [misc] +src/aaz_dev/cli/model/common/_fields.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/model/common/_fields.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/model/common/_fields.py:0: error: Class cannot subclass "StringType" (has type "Any") [misc] +src/aaz_dev/cli/model/common/_fields.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/model/common/_fields.py:0: error: Class cannot subclass "StringType" (has type "Any") [misc] +src/aaz_dev/cli/model/common/_fields.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/model/common/_fields.py:0: error: Class cannot subclass "BooleanType" (has type "Any") [misc] +src/aaz_dev/cli/model/common/_fields.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/model/common/_fields.py:0: error: Class cannot subclass "ModelType" (has type "Any") [misc] +src/aaz_dev/cli/model/common/_fields.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/model/common/_fields.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/model/atomic/_resource.py:0: error: Class cannot subclass "Model" (has type "Any") [misc] +src/aaz_dev/cli/model/atomic/_example.py:0: error: Class cannot subclass "Model" (has type "Any") [misc] +src/aaz_dev/cli/model/atomic/_client.py:0: error: Class cannot subclass "Model" (has type "Any") [misc] +src/aaz_dev/cli/controller/az_selector_generator.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_selector_generator.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_selector_generator.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_selector_generator.py:0: error: Call to untyped function "_iter_scopes" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_selector_generator.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_selector_generator.py:0: error: Call to untyped function "_iter_scopes" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_selector_generator.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_selector_generator.py:0: error: Call to untyped function "_iter_selector_scopes_by_index_base" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_selector_generator.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_selector_generator.py:0: error: Call to untyped function "_iter_selector_scopes_by_index_base" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_selector_generator.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_selector_generator.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_selector_generator.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/cli/controller/az_selector_generator.py:0: error: Call to untyped function "_handle_idx_lines_for_end" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_selector_generator.py:0: error: Call to untyped function "_iter_selector_scopes_by_index" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_selector_generator.py:0: error: Call to untyped function "_iter_selector_scopes_by_index_base" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_selector_generator.py:0: error: Call to untyped function "_iter_selector_scopes_by_index_base" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_selector_generator.py:0: error: Call to untyped function "_handle_idx_lines_for_end" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_selector_generator.py:0: error: Call to untyped function "_handle_idx_lines_for_end" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_selector_generator.py:0: error: Call to untyped function "_iter_selector_scopes_by_index" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_selector_generator.py:0: error: Call to untyped function "_iter_selector_scopes_by_index_base" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_selector_generator.py:0: error: Call to untyped function "_iter_selector_scopes_by_index_base" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_selector_generator.py:0: error: Call to untyped function "_handle_idx_lines_for_end" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_output_generator.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_output_generator.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_output_generator.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_output_generator.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_output_generator.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_operation_generator.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_operation_generator.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_operation_generator.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_operation_generator.py:0: error: Call to untyped function "__init__" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_operation_generator.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_operation_generator.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/cli/controller/az_operation_generator.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_operation_generator.py:0: error: Call to untyped function "__init__" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_operation_generator.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_operation_generator.py:0: error: Call to untyped function "__init__" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_operation_generator.py:0: error: Call to untyped function "AzHttpResponseGenerator" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_operation_generator.py:0: error: Call to untyped function "AzHttp202ResponseGenerator" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_operation_generator.py:0: error: Call to untyped function "AzHttpRequestContentGenerator" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_operation_generator.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_operation_generator.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_operation_generator.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_operation_generator.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_operation_generator.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_operation_generator.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_operation_generator.py:0: error: Call to untyped function "__init__" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_operation_generator.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_operation_generator.py:0: error: Call to untyped function "__init__" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_operation_generator.py:0: error: Call to untyped function "render_schema" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_operation_generator.py:0: error: Call to untyped function "_update_over_schema" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_operation_generator.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_operation_generator.py:0: error: Call to untyped function "_update_over_schema" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_operation_generator.py:0: error: Call to untyped function "_update_over_schema" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_operation_generator.py:0: error: Call to untyped function "_update_over_schema" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_operation_generator.py:0: error: Call to untyped function "_update_over_schema" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_operation_generator.py:0: error: Call to untyped function "_update_over_schema" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_operation_generator.py:0: error: Call to untyped function "_update_over_schema" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_operation_generator.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_operation_generator.py:0: error: Call to untyped function "_iter_request_scopes_by_schema_base" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_operation_generator.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_operation_generator.py:0: error: Call to untyped function "__init__" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_operation_generator.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_operation_generator.py:0: error: Call to untyped function "__init__" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_operation_generator.py:0: error: Call to untyped function "render_schema" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_operation_generator.py:0: error: Call to untyped function "_update_over_schema" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_operation_generator.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_operation_generator.py:0: error: Call to untyped function "_update_over_schema" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_operation_generator.py:0: error: Call to untyped function "_update_over_schema" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_operation_generator.py:0: error: Call to untyped function "_update_over_schema" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_operation_generator.py:0: error: Call to untyped function "_update_over_schema" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_operation_generator.py:0: error: Call to untyped function "_update_over_schema" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_operation_generator.py:0: error: Call to untyped function "_update_over_schema" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_operation_generator.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_operation_generator.py:0: error: Call to untyped function "_iter_request_scopes_by_schema_base" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_operation_generator.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_operation_generator.py:0: error: Call to untyped function "__init__" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_operation_generator.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_operation_generator.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/cli/controller/az_operation_generator.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_operation_generator.py:0: error: Call to untyped function "render_schema" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_operation_generator.py:0: error: Call to untyped function "_update_over_schema" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_operation_generator.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_operation_generator.py:0: error: Call to untyped function "_update_over_schema" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_operation_generator.py:0: error: Call to untyped function "_update_over_schema" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_operation_generator.py:0: error: Call to untyped function "_update_over_schema" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_operation_generator.py:0: error: Call to untyped function "_update_over_schema" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_operation_generator.py:0: error: Call to untyped function "_update_over_schema" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_operation_generator.py:0: error: Call to untyped function "_update_over_schema" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_operation_generator.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_operation_generator.py:0: error: Call to untyped function "_iter_request_scopes_by_schema_base" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_operation_generator.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_operation_generator.py:0: error: Call to untyped function "parse_cls_builder_name" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_operation_generator.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_operation_generator.py:0: error: Call to untyped function "_iter_request_scopes_by_schema_base" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_operation_generator.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_operation_generator.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_operation_generator.py:0: error: Call to untyped function "_generate_callback_name" of "AzHttpResponseGenerator" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_operation_generator.py:0: error: Call to untyped function "AzHttpResponseSchemaGenerator" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_operation_generator.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_operation_generator.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_operation_generator.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_operation_generator.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_operation_generator.py:0: error: Call to untyped function "_generate_schema_name" of "AzHttpResponseSchemaGenerator" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_operation_generator.py:0: error: Call to untyped function "_generate_schema_builder_name" of "AzHttpResponseSchemaGenerator" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_operation_generator.py:0: error: Call to untyped function "render_schema_base" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_operation_generator.py:0: error: Call to untyped function "_update_over_schema" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_operation_generator.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_operation_generator.py:0: error: Call to untyped function "_update_over_schema" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_operation_generator.py:0: error: Call to untyped function "_update_over_schema" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_operation_generator.py:0: error: Call to untyped function "_update_over_schema" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_operation_generator.py:0: error: Call to untyped function "_update_over_schema" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_operation_generator.py:0: error: Call to untyped function "_update_over_schema" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_operation_generator.py:0: error: Call to untyped function "_update_over_schema" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_operation_generator.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_operation_generator.py:0: error: Call to untyped function "_iter_response_scopes_by_schema_base" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_operation_generator.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_operation_generator.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_operation_generator.py:0: error: Call to untyped function "_generate_schema_name" of "AzResponseClsGenerator" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_operation_generator.py:0: error: Call to untyped function "parse_cls_builder_name" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_operation_generator.py:0: error: Call to untyped function "render_schema_base" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_operation_generator.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_operation_generator.py:0: error: Call to untyped function "_iter_response_scopes_by_schema_base" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_operation_generator.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_operation_generator.py:0: error: Call to untyped function "render_schema" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_operation_generator.py:0: error: Incompatible types in assignment (expression has type "str | None", variable has type "str") [assignment] +src/aaz_dev/cli/controller/az_operation_generator.py:0: error: Call to untyped function "render_schema_base" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_operation_generator.py:0: error: Call to untyped function "render_schema" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_operation_generator.py:0: error: Incompatible types in assignment (expression has type "str | None", variable has type "str") [assignment] +src/aaz_dev/cli/controller/az_operation_generator.py:0: error: Call to untyped function "render_schema_base" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_operation_generator.py:0: error: Call to untyped function "_iter_request_scopes_by_schema_base" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_operation_generator.py:0: error: Call to untyped function "_iter_request_scopes_by_schema_base" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_operation_generator.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_operation_generator.py:0: error: Call to untyped function "render_schema" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_operation_generator.py:0: error: Call to untyped function "render_schema_base" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_operation_generator.py:0: error: Call to untyped function "render_schema" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_operation_generator.py:0: error: Call to untyped function "render_schema_base" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_operation_generator.py:0: error: Call to untyped function "_iter_response_scopes_by_schema_base" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_operation_generator.py:0: error: Call to untyped function "_iter_response_scopes_by_schema_base" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_operation_generator.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_operation_generator.py:0: error: Call to untyped function "render_schema_base" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_operation_generator.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_operation_generator.py:0: error: Call to untyped function "parse_cls_builder_name" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_operation_generator.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_arg_group_generator.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_arg_group_generator.py:0: error: Call to untyped function "_update_over_arg" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_arg_group_generator.py:0: error: Call to untyped function "parse_arg_name" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_arg_group_generator.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_arg_group_generator.py:0: error: Call to untyped function "_update_over_arg" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_arg_group_generator.py:0: error: Call to untyped function "parse_arg_name" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_arg_group_generator.py:0: error: Call to untyped function "_update_over_arg" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_arg_group_generator.py:0: error: Call to untyped function "_update_over_arg" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_arg_group_generator.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_arg_group_generator.py:0: error: Call to untyped function "parse_arg_name" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_arg_group_generator.py:0: error: Call to untyped function "render_arg" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_arg_group_generator.py:0: error: Call to untyped function "_iter_scopes_by_arg_base" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_arg_group_generator.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_arg_group_generator.py:0: error: Call to untyped function "parse_cls_builder_name" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_arg_group_generator.py:0: error: Call to untyped function "render_arg_base" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_arg_group_generator.py:0: error: Call to untyped function "parse_arg_name" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_arg_group_generator.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_arg_group_generator.py:0: error: Call to untyped function "_iter_scopes_by_arg_base" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_arg_group_generator.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_arg_group_generator.py:0: error: Call to untyped function "parse_arg_name" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_arg_group_generator.py:0: error: Call to untyped function "render_arg" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_arg_group_generator.py:0: error: Call to untyped function "render_arg_base" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_arg_group_generator.py:0: error: Call to untyped function "render_arg_base" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_arg_group_generator.py:0: error: Call to untyped function "_iter_scopes_by_arg_base" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_arg_group_generator.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_arg_group_generator.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_arg_group_generator.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_arg_group_generator.py:0: error: Incompatible types in assignment (expression has type "bool", target has type "dict[Any, Any]") [assignment] +src/aaz_dev/cli/controller/az_arg_group_generator.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_arg_group_generator.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_arg_group_generator.py:0: error: Need type annotation for "arg_kwargs" [var-annotated] +src/aaz_dev/cli/controller/az_arg_group_generator.py:0: error: Call to untyped function "parse_arg_help" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_arg_group_generator.py:0: error: Incompatible types in assignment (expression has type "bool", target has type "list[Any]") [assignment] +src/aaz_dev/cli/controller/az_arg_group_generator.py:0: error: Incompatible types in assignment (expression has type "bool", target has type "list[Any]") [assignment] +src/aaz_dev/cli/controller/az_arg_group_generator.py:0: error: Incompatible types in assignment (expression has type "bool", target has type "list[Any]") [assignment] +src/aaz_dev/cli/controller/az_arg_group_generator.py:0: error: Call to untyped function "render_arg_base" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_arg_group_generator.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_arg_group_generator.py:0: error: Call to untyped function "parse_cls_builder_name" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_arg_group_generator.py:0: error: Call to untyped function "parse_arg_enum" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_arg_group_generator.py:0: error: Unsupported target for indexed assignment ("Collection[str]") [index] +src/aaz_dev/cli/controller/az_arg_group_generator.py:0: error: Unsupported target for indexed assignment ("Collection[str]") [index] +src/aaz_dev/cli/controller/az_arg_group_generator.py:0: error: Unsupported target for indexed assignment ("Collection[str]") [index] +src/aaz_dev/cli/controller/az_arg_group_generator.py:0: error: Unsupported target for indexed assignment ("Collection[str]") [index] +src/aaz_dev/cli/controller/az_arg_group_generator.py:0: error: Call to untyped function "parse_arg_enum" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_arg_group_generator.py:0: error: Unsupported target for indexed assignment ("Collection[str]") [index] +src/aaz_dev/cli/controller/az_arg_group_generator.py:0: error: Unsupported target for indexed assignment ("Collection[str]") [index] +src/aaz_dev/cli/controller/az_arg_group_generator.py:0: error: Unsupported target for indexed assignment ("Collection[str]") [index] +src/aaz_dev/cli/controller/az_arg_group_generator.py:0: error: Call to untyped function "parse_arg_enum" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_arg_group_generator.py:0: error: Unsupported target for indexed assignment ("Collection[str]") [index] +src/aaz_dev/cli/controller/az_arg_group_generator.py:0: error: Unsupported target for indexed assignment ("Collection[str]") [index] +src/aaz_dev/cli/controller/az_arg_group_generator.py:0: error: Unsupported target for indexed assignment ("Collection[str]") [index] +src/aaz_dev/cli/controller/az_arg_group_generator.py:0: error: Unsupported target for indexed assignment ("Collection[str]") [index] +src/aaz_dev/cli/controller/az_arg_group_generator.py:0: error: Unsupported target for indexed assignment ("Collection[str]") [index] +src/aaz_dev/cli/controller/az_arg_group_generator.py:0: error: Unsupported target for indexed assignment ("Collection[str]") [index] +src/aaz_dev/cli/controller/az_arg_group_generator.py:0: error: Unsupported target for indexed assignment ("Collection[str]") [index] +src/aaz_dev/cli/controller/az_arg_group_generator.py:0: error: Unsupported target for indexed assignment ("Collection[str]") [index] +src/aaz_dev/cli/controller/az_arg_group_generator.py:0: error: Unsupported target for indexed assignment ("Collection[str]") [index] +src/aaz_dev/cli/controller/az_arg_group_generator.py:0: error: Unsupported target for indexed assignment ("Collection[str]") [index] +src/aaz_dev/cli/controller/az_arg_group_generator.py:0: error: Unsupported target for indexed assignment ("Collection[str]") [index] +src/aaz_dev/cli/controller/az_arg_group_generator.py:0: error: Unsupported target for indexed assignment ("Collection[str]") [index] +src/aaz_dev/utils/base64.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/utils/base64.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/tests/api_tests/test_specs.py:0: error: Class cannot subclass "SwaggerSpecsTestCase" (has type "Any") [misc] +src/aaz_dev/swagger/tests/api_tests/test_specs.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/swagger/tests/api_tests/test_specs.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/swagger/tests/api_tests/test_specs.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/swagger/tests/api_tests/test_specs.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/swagger/tests/api_tests/test_specs.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/swagger/tests/api_tests/test_specs.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/swagger/tests/api_tests/test_specs.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/swagger/tests/api_tests/test_specs.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/swagger/tests/api_tests/test_specs.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/swagger/tests/api_tests/test_specs.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/swagger/tests/api_tests/test_specs.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/swagger/tests/api_tests/test_specs.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/swagger/tests/api_tests/test_specs.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/swagger/tests/api_tests/test_specs.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/swagger/tests/api_tests/test_specs.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/swagger/tests/api_tests/test_specs.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/swagger/tests/api_tests/test_specs.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/swagger/tests/api_tests/test_specs.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/swagger/tests/api_tests/test_specs.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/swagger/tests/api_tests/test_specs.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/swagger/model/schema/reference.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/swagger/model/schema/reference.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/swagger/model/schema/reference.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/swagger/model/schema/reference.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/schema/reference.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/swagger/model/schema/reference.py:0: error: Class cannot subclass "StringType" (has type "Any") [misc] +src/aaz_dev/swagger/model/schema/reference.py:0: error: Class cannot subclass "Model" (has type "Any") [misc] +src/aaz_dev/swagger/model/schema/reference.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/schema/reference.py:0: error: Call to untyped function "__init__" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/schema/reference.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/schema/reference.py:0: error: Call to untyped function "is_linked" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/schema/reference.py:0: error: Call to untyped function "link" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/schema/reference.py:0: error: Call to untyped function "link" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/schema/reference.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/tests/configuration_tests/test_xml.py:0: error: Class cannot subclass "SwaggerSpecsTestCase" (has type "Any") [misc] +src/aaz_dev/command/tests/configuration_tests/test_xml.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/command/tests/configuration_tests/test_xml.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/command/tests/configuration_tests/test_xml.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/command/tests/configuration_tests/test_xml.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/swagger/controller/_example_builder.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/controller/_example_builder.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/controller/_example_builder.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/swagger/controller/_example_builder.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/swagger/controller/_example_builder.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/swagger/controller/_example_builder.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/controller/_example_builder.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/controller/_example_builder.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/controller/_example_builder.py:0: error: Call to untyped function "__init__" in typed context [no-untyped-call] +src/aaz_dev/swagger/controller/_example_builder.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/controller/_example_builder.py:0: error: Call to untyped function "build" in typed context [no-untyped-call] +src/aaz_dev/swagger/controller/_example_builder.py:0: error: Call to untyped function "new_instance" of "ExampleItem" in typed context [no-untyped-call] +src/aaz_dev/swagger/controller/_example_builder.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/controller/_example_builder.py:0: error: Call to untyped function "new_instance" of "ExampleItem" in typed context [no-untyped-call] +src/aaz_dev/swagger/controller/_example_builder.py:0: error: Call to untyped function "build" in typed context [no-untyped-call] +src/aaz_dev/swagger/controller/_example_builder.py:0: error: Call to untyped function "build" in typed context [no-untyped-call] +src/aaz_dev/swagger/controller/_example_builder.py:0: error: Call to untyped function "get_safe_value" in typed context [no-untyped-call] +src/aaz_dev/swagger/controller/_example_builder.py:0: error: Call to untyped function "new_instance" of "ExampleItem" in typed context [no-untyped-call] +src/aaz_dev/swagger/controller/_example_builder.py:0: error: Call to untyped function "build" in typed context [no-untyped-call] +src/aaz_dev/swagger/controller/_example_builder.py:0: error: Call to untyped function "new_instance" of "ExampleItem" in typed context [no-untyped-call] +src/aaz_dev/swagger/controller/_example_builder.py:0: error: Call to untyped function "new_instance" of "ExampleItem" in typed context [no-untyped-call] +src/aaz_dev/swagger/controller/_example_builder.py:0: error: Call to untyped function "build" in typed context [no-untyped-call] +src/aaz_dev/swagger/controller/_example_builder.py:0: error: Call to untyped function "build" in typed context [no-untyped-call] +src/aaz_dev/swagger/controller/_example_builder.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/schema/xml.py:0: error: Class cannot subclass "Model" (has type "Any") [misc] +src/aaz_dev/swagger/model/schema/xml.py:0: error: Call to untyped function "XmsTextField" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/schema/typespec/operation.py:0: error: Module "aaz_dev.swagger.model.schema.fields" does not explicitly export attribute "BooleanType" [attr-defined] +src/aaz_dev/swagger/model/schema/typespec/operation.py:0: error: Class cannot subclass "Model" (has type "Any") [misc] +src/aaz_dev/swagger/model/schema/typespec/operation.py:0: error: Call to untyped function "XmsPageableField" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/schema/security_scheme.py:0: error: Class cannot subclass "Model" (has type "Any") [misc] +src/aaz_dev/swagger/model/schema/security_scheme.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/schema/security_scheme.py:0: error: Incompatible types in assignment (expression has type "str", base class "_SecuritySchemeBase" defined the type as "None") [assignment] +src/aaz_dev/swagger/model/schema/security_scheme.py:0: error: Incompatible types in assignment (expression has type "str", base class "_SecuritySchemeBase" defined the type as "None") [assignment] +src/aaz_dev/swagger/model/schema/security_scheme.py:0: error: Incompatible types in assignment (expression has type "str", base class "_SecuritySchemeBase" defined the type as "None") [assignment] +src/aaz_dev/swagger/model/schema/security_scheme.py:0: error: Call to untyped function "ScopesField" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/schema/security_scheme.py:0: error: Class cannot subclass "PolyModelType" (has type "Any") [misc] +src/aaz_dev/swagger/model/schema/security_scheme.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/schema/items.py:0: error: Class cannot subclass "Model" (has type "Any") [misc] +src/aaz_dev/swagger/model/schema/items.py:0: error: Call to untyped function "DataTypeFormatEnum" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/schema/items.py:0: error: Call to untyped function "XmsEnumField" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/schema/items.py:0: error: Call to untyped function "XNullableField" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/schema/items.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/schema/tag.py:0: error: Class cannot subclass "Model" (has type "Any") [misc] +src/aaz_dev/swagger/model/schema/info.py:0: error: Class cannot subclass "Model" (has type "Any") [misc] +src/aaz_dev/swagger/model/schema/info.py:0: error: Call to untyped function "XmsCodeGenerationSettingsField" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/schema/info.py:0: error: Call to untyped function "XcadlGeneratedField" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/schema/info.py:0: error: Call to untyped function "XTypespecGeneratedField" in typed context [no-untyped-call] +src/aaz_dev/command/model/specs/_command_tree.py:0: error: Class cannot subclass "Model" (has type "Any") [misc] +src/aaz_dev/command/model/specs/_command_tree.py:0: error: Class cannot subclass "Model" (has type "Any") [misc] +src/aaz_dev/command/model/specs/_command_tree.py:0: error: Class cannot subclass "Model" (has type "Any") [misc] +src/aaz_dev/command/model/specs/_command_tree.py:0: error: Class cannot subclass "Model" (has type "Any") [misc] +src/aaz_dev/command/model/specs/_command_tree.py:0: error: Class cannot subclass "Model" (has type "Any") [misc] +src/aaz_dev/command/model/specs/_command_tree.py:0: error: Class cannot subclass "Model" (has type "Any") [misc] +src/aaz_dev/command/model/specs/_command_tree.py:0: error: Class cannot subclass "Model" (has type "Any") [misc] +src/aaz_dev/cli/model/view/_command_group.py:0: error: Class cannot subclass "Model" (has type "Any") [misc] +src/aaz_dev/cli/model/atomic/_help.py:0: error: Class cannot subclass "Model" (has type "Any") [misc] +src/aaz_dev/cli/model/atomic/_help.py:0: error: Class cannot subclass "Model" (has type "Any") [misc] +src/aaz_dev/utils/exceptions.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/utils/exceptions.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/tests/specs_tests/test_swagger_loader.py:0: error: Class cannot subclass "SwaggerSpecsTestCase" (has type "Any") [misc] +src/aaz_dev/swagger/tests/specs_tests/test_swagger_loader.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/swagger/tests/specs_tests/test_swagger_loader.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/tests/specs_tests/test_swagger_loader.py:0: error: Call to untyped function "_fetch_ref_values" in typed context [no-untyped-call] +src/aaz_dev/swagger/tests/specs_tests/test_swagger_loader.py:0: error: Call to untyped function "_fetch_ref_values" in typed context [no-untyped-call] +src/aaz_dev/swagger/tests/specs_tests/test_swagger_loader.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/swagger/tests/specs_tests/test_swagger_loader.py:0: error: Call to untyped function "_fetch_ref_values" in typed context [no-untyped-call] +src/aaz_dev/swagger/tests/schema_tests/test_schema.py:0: error: Class cannot subclass "SwaggerSpecsTestCase" (has type "Any") [misc] +src/aaz_dev/swagger/tests/schema_tests/test_schema.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/swagger/tests/schema_tests/test_schema.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/swagger/tests/schema_tests/test_schema.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/swagger/tests/schema_tests/test_schema.py:0: error: Call to untyped function "_swagger_bodies" in typed context [no-untyped-call] +src/aaz_dev/swagger/tests/schema_tests/test_schema.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/swagger/tests/schema_tests/test_schema.py:0: error: Call to untyped function "_swagger_bodies" in typed context [no-untyped-call] +src/aaz_dev/swagger/tests/schema_tests/test_schema.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/swagger/tests/schema_tests/test_schema.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/swagger/tests/schema_tests/test_schema.py:0: error: Call to untyped function "_infoes" in typed context [no-untyped-call] +src/aaz_dev/swagger/tests/schema_tests/test_schema.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/swagger/tests/schema_tests/test_schema.py:0: error: Call to untyped function "_swagger_bodies" in typed context [no-untyped-call] +src/aaz_dev/swagger/tests/schema_tests/test_schema.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/swagger/tests/schema_tests/test_schema.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/swagger/tests/schema_tests/test_schema.py:0: error: Call to untyped function "_pathItems" in typed context [no-untyped-call] +src/aaz_dev/swagger/tests/schema_tests/test_schema.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/swagger/tests/schema_tests/test_schema.py:0: error: Call to untyped function "_swagger_bodies" in typed context [no-untyped-call] +src/aaz_dev/swagger/tests/schema_tests/test_schema.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/swagger/tests/schema_tests/test_schema.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/swagger/tests/schema_tests/test_schema.py:0: error: Call to untyped function "_definitions" in typed context [no-untyped-call] +src/aaz_dev/swagger/tests/schema_tests/test_schema.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/swagger/tests/schema_tests/test_schema.py:0: error: Call to untyped function "_swagger_bodies" in typed context [no-untyped-call] +src/aaz_dev/swagger/tests/schema_tests/test_schema.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/swagger/tests/schema_tests/test_schema.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/swagger/tests/schema_tests/test_schema.py:0: error: Call to untyped function "_parameters" in typed context [no-untyped-call] +src/aaz_dev/swagger/tests/schema_tests/test_schema.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/swagger/tests/schema_tests/test_schema.py:0: error: Call to untyped function "_swagger_bodies" in typed context [no-untyped-call] +src/aaz_dev/swagger/tests/schema_tests/test_schema.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/swagger/tests/schema_tests/test_schema.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/swagger/tests/schema_tests/test_schema.py:0: error: Call to untyped function "_responses" in typed context [no-untyped-call] +src/aaz_dev/swagger/tests/schema_tests/test_schema.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/swagger/tests/schema_tests/test_schema.py:0: error: Call to untyped function "_responses" in typed context [no-untyped-call] +src/aaz_dev/swagger/tests/schema_tests/test_schema.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/swagger/tests/schema_tests/test_schema.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/swagger/tests/schema_tests/test_schema.py:0: error: Call to untyped function "_response_headers" in typed context [no-untyped-call] +src/aaz_dev/swagger/tests/schema_tests/test_schema.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/swagger/tests/schema_tests/test_schema.py:0: error: Call to untyped function "_responses" in typed context [no-untyped-call] +src/aaz_dev/swagger/tests/schema_tests/test_schema.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/swagger/tests/schema_tests/test_schema.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/swagger/tests/schema_tests/test_schema.py:0: error: Call to untyped function "_response_schema" in typed context [no-untyped-call] +src/aaz_dev/swagger/tests/schema_tests/test_schema.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/swagger/tests/schema_tests/test_schema.py:0: error: Call to untyped function "_swagger_bodies" in typed context [no-untyped-call] +src/aaz_dev/swagger/tests/schema_tests/test_schema.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/swagger/tests/schema_tests/test_schema.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/swagger/tests/schema_tests/test_schema.py:0: error: Call to untyped function "_securityDefinitions" in typed context [no-untyped-call] +src/aaz_dev/swagger/tests/schema_tests/test_schema.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/swagger/tests/schema_tests/test_schema.py:0: error: Call to untyped function "_swagger_bodies" in typed context [no-untyped-call] +src/aaz_dev/swagger/tests/schema_tests/test_schema.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/swagger/tests/schema_tests/test_schema.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/swagger/tests/schema_tests/test_schema.py:0: error: Call to untyped function "_tags" in typed context [no-untyped-call] +src/aaz_dev/swagger/tests/schema_tests/test_schema.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/swagger/tests/schema_tests/test_schema.py:0: error: Call to untyped function "_swagger_bodies" in typed context [no-untyped-call] +src/aaz_dev/swagger/tests/schema_tests/test_schema.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/swagger/tests/schema_tests/test_schema.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/swagger/tests/schema_tests/test_schema.py:0: error: Call to untyped function "_externalDocs" in typed context [no-untyped-call] +src/aaz_dev/swagger/tests/schema_tests/test_schema.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/swagger/tests/schema_tests/test_schema.py:0: error: Call to untyped function "_swagger_bodies" in typed context [no-untyped-call] +src/aaz_dev/swagger/tests/schema_tests/test_schema.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/swagger/tests/schema_tests/test_schema.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/swagger/tests/schema_tests/test_schema.py:0: error: Call to untyped function "_x_ms_paths" in typed context [no-untyped-call] +src/aaz_dev/swagger/tests/schema_tests/test_schema.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/swagger/tests/schema_tests/test_schema.py:0: error: Call to untyped function "_swagger_bodies" in typed context [no-untyped-call] +src/aaz_dev/swagger/tests/schema_tests/test_schema.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/swagger/tests/schema_tests/test_schema.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/swagger/tests/schema_tests/test_schema.py:0: error: Call to untyped function "_x_ms_parameterized_host" in typed context [no-untyped-call] +src/aaz_dev/swagger/tests/schema_tests/test_schema.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/command/tests/editor_tests/test_workspace.py:0: error: Class cannot subclass "CommandTestCase" (has type "Any") [misc] +src/aaz_dev/command/tests/editor_tests/test_workspace.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/tests/editor_tests/test_workspace.py:0: error: Class cannot subclass "CommandTestCase" (has type "Any") [misc] +src/aaz_dev/command/tests/editor_tests/test_workspace.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/tests/editor_tests/test_workspace.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/tests/editor_tests/test_workspace.py:0: error: Name "CMDJsonSubresourceSelector" is not defined [name-defined] +src/aaz_dev/command/tests/editor_tests/test_workspace.py:0: error: Name "CMDObjectIndex" is not defined [name-defined] +src/aaz_dev/command/tests/editor_tests/test_workspace.py:0: error: Name "CMDArrayIndex" is not defined [name-defined] +src/aaz_dev/command/tests/editor_tests/test_workspace.py:0: error: Name "CMDJsonSubresourceSelector" is not defined [name-defined] +src/aaz_dev/command/tests/editor_tests/test_workspace.py:0: error: Name "CMDObjectIndex" is not defined [name-defined] +src/aaz_dev/command/tests/editor_tests/test_workspace.py:0: error: Name "CMDArrayIndex" is not defined [name-defined] +src/aaz_dev/command/tests/editor_tests/test_workspace.py:0: error: Name "CMDStringSchema" is not defined [name-defined] +src/aaz_dev/command/tests/editor_tests/test_workspace.py:0: error: Name "CMDObjectIndexBase" is not defined [name-defined] +src/aaz_dev/command/tests/editor_tests/test_workspace.py:0: error: Name "CMDJsonSubresourceSelector" is not defined [name-defined] +src/aaz_dev/command/tests/editor_tests/test_workspace.py:0: error: Name "CMDObjectIndex" is not defined [name-defined] +src/aaz_dev/command/tests/editor_tests/test_workspace.py:0: error: Name "CMDArrayIndex" is not defined [name-defined] +src/aaz_dev/command/tests/editor_tests/test_workspace.py:0: error: Name "CMDStringSchema" is not defined [name-defined] +src/aaz_dev/command/tests/editor_tests/test_workspace.py:0: error: Name "CMDObjectIndexBase" is not defined [name-defined] +src/aaz_dev/command/tests/editor_tests/test_workspace.py:0: error: Name "CMDInstanceDeleteOperation" is not defined [name-defined] +src/aaz_dev/command/tests/editor_tests/test_workspace.py:0: error: Name "CMDJsonInstanceDeleteAction" is not defined [name-defined] +src/aaz_dev/command/tests/editor_tests/test_workspace.py:0: error: Item "None" of "Any | None" has no attribute "ref" [union-attr] +src/aaz_dev/command/tests/editor_tests/test_workspace.py:0: error: Name "CMDJsonSubresourceSelector" is not defined [name-defined] +src/aaz_dev/command/tests/editor_tests/test_workspace.py:0: error: Name "CMDObjectIndex" is not defined [name-defined] +src/aaz_dev/command/tests/editor_tests/test_workspace.py:0: error: Name "CMDArrayIndex" is not defined [name-defined] +src/aaz_dev/command/tests/editor_tests/test_workspace.py:0: error: Name "CMDStringSchema" is not defined [name-defined] +src/aaz_dev/command/tests/editor_tests/test_workspace.py:0: error: Name "CMDObjectIndexBase" is not defined [name-defined] +src/aaz_dev/command/tests/editor_tests/test_workspace.py:0: error: Name "CMDInstanceCreateOperation" is not defined [name-defined] +src/aaz_dev/command/tests/editor_tests/test_workspace.py:0: error: Name "CMDJsonInstanceCreateAction" is not defined [name-defined] +src/aaz_dev/command/tests/editor_tests/test_workspace.py:0: error: Item "None" of "Any | None" has no attribute "ref" [union-attr] +src/aaz_dev/command/tests/editor_tests/test_workspace.py:0: error: Item "None" of "Any | None" has no attribute "json" [union-attr] +src/aaz_dev/command/tests/editor_tests/test_workspace.py:0: error: Name "CMDJsonSubresourceSelector" is not defined [name-defined] +src/aaz_dev/command/tests/editor_tests/test_workspace.py:0: error: Name "CMDObjectIndex" is not defined [name-defined] +src/aaz_dev/command/tests/editor_tests/test_workspace.py:0: error: Name "CMDArrayIndex" is not defined [name-defined] +src/aaz_dev/command/tests/editor_tests/test_workspace.py:0: error: Name "CMDStringSchema" is not defined [name-defined] +src/aaz_dev/command/tests/editor_tests/test_workspace.py:0: error: Name "CMDObjectIndexBase" is not defined [name-defined] +src/aaz_dev/command/tests/editor_tests/test_workspace.py:0: error: Name "CMDInstanceUpdateOperation" is not defined [name-defined] +src/aaz_dev/command/tests/editor_tests/test_workspace.py:0: error: Name "CMDJsonInstanceUpdateAction" is not defined [name-defined] +src/aaz_dev/command/tests/editor_tests/test_workspace.py:0: error: Item "None" of "Any | None" has no attribute "ref" [union-attr] +src/aaz_dev/command/tests/editor_tests/test_workspace.py:0: error: Item "None" of "Any | None" has no attribute "json" [union-attr] +src/aaz_dev/command/tests/editor_tests/test_workspace.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/tests/editor_tests/test_workspace.py:0: error: Name "CMDJsonSubresourceSelector" is not defined [name-defined] +src/aaz_dev/command/tests/editor_tests/test_workspace.py:0: error: Name "CMDObjectIndex" is not defined [name-defined] +src/aaz_dev/command/tests/editor_tests/test_workspace.py:0: error: Name "CMDArrayIndex" is not defined [name-defined] +src/aaz_dev/command/tests/editor_tests/test_workspace.py:0: error: Name "CMDStringSchema" is not defined [name-defined] +src/aaz_dev/command/tests/editor_tests/test_workspace.py:0: error: Name "CMDObjectIndexBase" is not defined [name-defined] +src/aaz_dev/command/tests/editor_tests/test_workspace.py:0: error: Name "CMDArrayIndex" is not defined [name-defined] +src/aaz_dev/command/tests/editor_tests/test_workspace.py:0: error: Name "CMDJsonSubresourceSelector" is not defined [name-defined] +src/aaz_dev/command/tests/editor_tests/test_workspace.py:0: error: Name "CMDObjectIndex" is not defined [name-defined] +src/aaz_dev/command/tests/editor_tests/test_workspace.py:0: error: Name "CMDArrayIndex" is not defined [name-defined] +src/aaz_dev/command/tests/editor_tests/test_workspace.py:0: error: Name "CMDStringSchema" is not defined [name-defined] +src/aaz_dev/command/tests/editor_tests/test_workspace.py:0: error: Name "CMDObjectIndexBase" is not defined [name-defined] +src/aaz_dev/command/tests/editor_tests/test_workspace.py:0: error: Name "CMDArrayIndex" is not defined [name-defined] +src/aaz_dev/command/tests/editor_tests/test_workspace.py:0: error: Name "CMDIntegerSchema" is not defined [name-defined] +src/aaz_dev/command/tests/editor_tests/test_workspace.py:0: error: Name "CMDObjectIndexBase" is not defined [name-defined] +src/aaz_dev/command/tests/editor_tests/test_workspace.py:0: error: Name "CMDJsonSubresourceSelector" is not defined [name-defined] +src/aaz_dev/command/tests/editor_tests/test_workspace.py:0: error: Name "CMDObjectIndex" is not defined [name-defined] +src/aaz_dev/command/tests/editor_tests/test_workspace.py:0: error: Name "CMDArrayIndex" is not defined [name-defined] +src/aaz_dev/command/tests/editor_tests/test_workspace.py:0: error: Name "CMDStringSchema" is not defined [name-defined] +src/aaz_dev/command/tests/editor_tests/test_workspace.py:0: error: Name "CMDObjectIndexBase" is not defined [name-defined] +src/aaz_dev/command/tests/editor_tests/test_workspace.py:0: error: Name "CMDArrayIndex" is not defined [name-defined] +src/aaz_dev/command/tests/editor_tests/test_workspace.py:0: error: Name "CMDIntegerSchema" is not defined [name-defined] +src/aaz_dev/command/tests/editor_tests/test_workspace.py:0: error: Name "CMDObjectIndexBase" is not defined [name-defined] +src/aaz_dev/command/tests/editor_tests/test_workspace.py:0: error: Name "CMDInstanceDeleteOperation" is not defined [name-defined] +src/aaz_dev/command/tests/editor_tests/test_workspace.py:0: error: Name "CMDJsonInstanceDeleteAction" is not defined [name-defined] +src/aaz_dev/command/tests/editor_tests/test_workspace.py:0: error: Item "None" of "Any | None" has no attribute "ref" [union-attr] +src/aaz_dev/command/tests/editor_tests/test_workspace.py:0: error: Name "CMDJsonSubresourceSelector" is not defined [name-defined] +src/aaz_dev/command/tests/editor_tests/test_workspace.py:0: error: Name "CMDObjectIndex" is not defined [name-defined] +src/aaz_dev/command/tests/editor_tests/test_workspace.py:0: error: Name "CMDArrayIndex" is not defined [name-defined] +src/aaz_dev/command/tests/editor_tests/test_workspace.py:0: error: Name "CMDStringSchema" is not defined [name-defined] +src/aaz_dev/command/tests/editor_tests/test_workspace.py:0: error: Name "CMDObjectIndexBase" is not defined [name-defined] +src/aaz_dev/command/tests/editor_tests/test_workspace.py:0: error: Name "CMDArrayIndex" is not defined [name-defined] +src/aaz_dev/command/tests/editor_tests/test_workspace.py:0: error: Name "CMDIntegerSchema" is not defined [name-defined] +src/aaz_dev/command/tests/editor_tests/test_workspace.py:0: error: Name "CMDObjectIndexBase" is not defined [name-defined] +src/aaz_dev/command/tests/editor_tests/test_workspace.py:0: error: Name "CMDInstanceCreateOperation" is not defined [name-defined] +src/aaz_dev/command/tests/editor_tests/test_workspace.py:0: error: Name "CMDJsonInstanceCreateAction" is not defined [name-defined] +src/aaz_dev/command/tests/editor_tests/test_workspace.py:0: error: Item "None" of "Any | None" has no attribute "ref" [union-attr] +src/aaz_dev/command/tests/editor_tests/test_workspace.py:0: error: Item "None" of "Any | None" has no attribute "json" [union-attr] +src/aaz_dev/command/tests/editor_tests/test_workspace.py:0: error: Name "CMDJsonSubresourceSelector" is not defined [name-defined] +src/aaz_dev/command/tests/editor_tests/test_workspace.py:0: error: Name "CMDObjectIndex" is not defined [name-defined] +src/aaz_dev/command/tests/editor_tests/test_workspace.py:0: error: Name "CMDArrayIndex" is not defined [name-defined] +src/aaz_dev/command/tests/editor_tests/test_workspace.py:0: error: Name "CMDStringSchema" is not defined [name-defined] +src/aaz_dev/command/tests/editor_tests/test_workspace.py:0: error: Name "CMDObjectIndexBase" is not defined [name-defined] +src/aaz_dev/command/tests/editor_tests/test_workspace.py:0: error: Name "CMDArrayIndex" is not defined [name-defined] +src/aaz_dev/command/tests/editor_tests/test_workspace.py:0: error: Name "CMDIntegerSchema" is not defined [name-defined] +src/aaz_dev/command/tests/editor_tests/test_workspace.py:0: error: Name "CMDObjectIndexBase" is not defined [name-defined] +src/aaz_dev/command/tests/editor_tests/test_workspace.py:0: error: Name "CMDInstanceUpdateOperation" is not defined [name-defined] +src/aaz_dev/command/tests/editor_tests/test_workspace.py:0: error: Name "CMDJsonInstanceUpdateAction" is not defined [name-defined] +src/aaz_dev/command/tests/editor_tests/test_workspace.py:0: error: Item "None" of "Any | None" has no attribute "ref" [union-attr] +src/aaz_dev/command/tests/editor_tests/test_workspace.py:0: error: Item "None" of "Any | None" has no attribute "json" [union-attr] +src/aaz_dev/command/tests/common.py:0: error: Class cannot subclass "ApiTestCase" (has type "Any") [misc] +src/aaz_dev/command/tests/common.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/tests/common.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/tests/common.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/tests/common.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/tests/api_tests/test_editor.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/tests/api_tests/test_editor.py:0: error: Class cannot subclass "CommandTestCase" (has type "Any") [misc] +src/aaz_dev/command/tests/api_tests/test_editor.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/tests/api_tests/test_editor.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/tests/api_tests/test_editor.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/tests/api_tests/test_editor.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/tests/api_tests/test_editor.py:0: error: Call to untyped function "build_typespec_resource" in typed context [no-untyped-call] +src/aaz_dev/command/tests/api_tests/test_editor.py:0: error: Call to untyped function "build_typespec_resource" in typed context [no-untyped-call] +src/aaz_dev/command/tests/api_tests/test_editor.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/tests/api_tests/test_editor.py:0: error: Call to untyped function "build_typespec_resource" in typed context [no-untyped-call] +src/aaz_dev/command/tests/api_tests/test_editor.py:0: error: Call to untyped function "build_typespec_resource" in typed context [no-untyped-call] +src/aaz_dev/command/tests/api_tests/test_editor.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/tests/api_tests/test_editor.py:0: error: Call to untyped function "build_typespec_resource" in typed context [no-untyped-call] +src/aaz_dev/command/tests/api_tests/test_editor.py:0: error: Call to untyped function "build_typespec_resource" in typed context [no-untyped-call] +src/aaz_dev/command/tests/api_tests/test_editor.py:0: error: Call to untyped function "build_typespec_resource" in typed context [no-untyped-call] +src/aaz_dev/command/tests/api_tests/test_editor.py:0: error: Call to untyped function "build_typespec_resource" in typed context [no-untyped-call] +src/aaz_dev/command/tests/api_tests/test_editor.py:0: error: Call to untyped function "build_typespec_resource" in typed context [no-untyped-call] +src/aaz_dev/command/tests/api_tests/test_editor.py:0: error: Call to untyped function "build_typespec_resource" in typed context [no-untyped-call] +src/aaz_dev/command/tests/api_tests/test_editor.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/tests/api_tests/test_editor.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/tests/api_tests/test_editor.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/tests/api_tests/test_editor.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/tests/api_tests/test_editor.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/tests/api_tests/test_editor.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/tests/api_tests/test_editor.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/tests/api_tests/test_editor.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/tests/api_tests/test_editor.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/tests/api_tests/test_editor.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/tests/api_tests/test_editor.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/tests/api_tests/test_editor.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/tests/api_tests/test_editor.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/tests/api_tests/test_editor.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/tests/api_tests/test_editor.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/tests/api_tests/test_editor.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/tests/api_tests/test_editor.py:0: error: Call to untyped function "build_typespec_resource" in typed context [no-untyped-call] +src/aaz_dev/command/tests/api_tests/test_editor.py:0: error: Call to untyped function "build_typespec_resource" in typed context [no-untyped-call] +src/aaz_dev/command/tests/api_tests/test_editor.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/tests/api_tests/test_editor.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/tests/api_tests/test_editor.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/client_cfg_reader.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/client_cfg_reader.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/client_cfg_reader.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Call to untyped function "link" in typed context [no-untyped-call] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/command/controller/cfg_reader.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/command/controller/cfg_reader.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Call to untyped function "iter_commands_by_resource" in typed context [no-untyped-call] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Call to untyped function "iter_commands_by_resource" in typed context [no-untyped-call] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Call to untyped function "iter_commands" in typed context [no-untyped-call] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Incompatible types in assignment (expression has type "set[Any]", variable has type "tuple[Any, ...]") [assignment] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Non-overlapping equality check (left operand type: "set[str]", right operand type: "tuple[Any, ...]") [comparison-overlap] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Call to untyped function "iter_commands" in typed context [no-untyped-call] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Call to untyped function "iter_command_group_names" in typed context [no-untyped-call] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Incompatible types in assignment (expression has type "list[Any]", variable has type "tuple[Any, ...]") [assignment] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Argument 1 to "len" has incompatible type "Any | None"; expected "Sized" [arg-type] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Value of type "Any | None" is not indexable [index] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Call to untyped function "find_command_group" in typed context [no-untyped-call] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Argument 1 to "len" has incompatible type "Any | None"; expected "Sized" [arg-type] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Incompatible types in assignment (expression has type "list[Any]", variable has type "tuple[Any, ...]") [assignment] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Call to untyped function "find_command_group" in typed context [no-untyped-call] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Call to untyped function "find_command" in typed context [no-untyped-call] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Call to untyped function "find_arg_in_command" in typed context [no-untyped-call] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Call to untyped function "arg_idx_to_list" in typed context [no-untyped-call] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Call to untyped function "find_arg_in_group" in typed context [no-untyped-call] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Call to untyped function "find_command" in typed context [no-untyped-call] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Call to untyped function "find_arg_parent_in_command" in typed context [no-untyped-call] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Call to untyped function "arg_idx_to_list" in typed context [no-untyped-call] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Call to untyped function "find_arg_in_group" in typed context [no-untyped-call] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Call to untyped function "find_arg_in_command" of "CfgReader" in typed context [no-untyped-call] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Call to untyped function "arg_idx_to_list" in typed context [no-untyped-call] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Call to untyped function "find_sub_arg" in typed context [no-untyped-call] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Call to untyped function "arg_idx_to_list" in typed context [no-untyped-call] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Call to untyped function "find_sub_arg" in typed context [no-untyped-call] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Call to untyped function "find_sub_arg" in typed context [no-untyped-call] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Call to untyped function "find_sub_arg" in typed context [no-untyped-call] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Call to untyped function "find_command" in typed context [no-untyped-call] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Call to untyped function "find_arg_in_command_by_var" in typed context [no-untyped-call] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Call to untyped function "find_command" in typed context [no-untyped-call] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Call to untyped function "find_arg_in_command_with_parent_by_var" in typed context [no-untyped-call] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Call to untyped function "find_arg_in_command_with_parent_by_var" in typed context [no-untyped-call] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Call to untyped function "_iter_args_in_group" in typed context [no-untyped-call] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Call to untyped function "arg_idx_to_str" in typed context [no-untyped-call] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Call to untyped function "_is_similar_args_in_base" in typed context [no-untyped-call] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Call to untyped function "_is_similar_args_in_base" in typed context [no-untyped-call] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Call to untyped function "is_similar_args" of "CfgReader" in typed context [no-untyped-call] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Call to untyped function "_is_similar_args_in_base" in typed context [no-untyped-call] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Call to untyped function "find_command" in typed context [no-untyped-call] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Call to untyped function "_find_arg_cls_definition" in typed context [no-untyped-call] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Call to untyped function "_iter_args_in_group" in typed context [no-untyped-call] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Call to untyped function "arg_idx_to_str" in typed context [no-untyped-call] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Call to untyped function "find_command" in typed context [no-untyped-call] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Call to untyped function "_iter_arg_cls_definition" in typed context [no-untyped-call] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Call to untyped function "_iter_args_in_group" in typed context [no-untyped-call] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Call to untyped function "arg_idx_to_str" in typed context [no-untyped-call] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Call to untyped function "find_command" in typed context [no-untyped-call] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Call to untyped function "_iter_arg_cls_reference" in typed context [no-untyped-call] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Call to untyped function "_iter_args_in_group" in typed context [no-untyped-call] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Call to untyped function "arg_idx_to_str" in typed context [no-untyped-call] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Call to untyped function "_iter_args_in_group" in typed context [no-untyped-call] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Call to untyped function "arg_idx_to_str" in typed context [no-untyped-call] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Call to untyped function "_iter_sub_args" in typed context [no-untyped-call] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Call to untyped function "_iter_sub_args" in typed context [no-untyped-call] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Call to untyped function "_iter_sub_args" in typed context [no-untyped-call] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Call to untyped function "_iter_sub_args" in typed context [no-untyped-call] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Call to untyped function "find_command" in typed context [no-untyped-call] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Call to untyped function "find_schema_in_command" in typed context [no-untyped-call] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Call to untyped function "find_schema_in_operation" in typed context [no-untyped-call] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Call to untyped function "find_schema_in_request" in typed context [no-untyped-call] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Call to untyped function "find_schema_in_response" in typed context [no-untyped-call] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Call to untyped function "find_schema_in_json" in typed context [no-untyped-call] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Call to untyped function "find_schema_in_json" in typed context [no-untyped-call] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Call to untyped function "find_command" in typed context [no-untyped-call] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Call to untyped function "find_schema_parent_in_command" in typed context [no-untyped-call] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Call to untyped function "find_schema_in_command" of "CfgReader" in typed context [no-untyped-call] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Call to untyped function "find_schema_in_json" in typed context [no-untyped-call] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Call to untyped function "find_schema_in_json" in typed context [no-untyped-call] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Call to untyped function "find_sub_schema" in typed context [no-untyped-call] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Call to untyped function "find_sub_schema" in typed context [no-untyped-call] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Call to untyped function "find_sub_schema" in typed context [no-untyped-call] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Call to untyped function "find_sub_schema" in typed context [no-untyped-call] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Call to untyped function "find_sub_schema" in typed context [no-untyped-call] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Call to untyped function "find_sub_schema" in typed context [no-untyped-call] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Call to untyped function "find_sub_schema" in typed context [no-untyped-call] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Call to untyped function "trim_identity_schema_by_idx" in typed context [no-untyped-call] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Call to untyped function "trim_identity_schema_by_idx" in typed context [no-untyped-call] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Call to untyped function "trim_identity_schema_by_idx" in typed context [no-untyped-call] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Call to untyped function "trim_identity_schema_by_idx" in typed context [no-untyped-call] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Call to untyped function "trim_identity_schema_by_idx" in typed context [no-untyped-call] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Call to untyped function "trim_identity_schema_by_idx" in typed context [no-untyped-call] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Call to untyped function "iter_schema_in_update_operation_by_identity" in typed context [no-untyped-call] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Call to untyped function "_iter_schema_in_json" in typed context [no-untyped-call] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Call to untyped function "_iter_schema_in_request" in typed context [no-untyped-call] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Call to untyped function "iter_schema_in_operation_by_arg_var" in typed context [no-untyped-call] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Call to untyped function "_iter_schema_in_request" in typed context [no-untyped-call] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Call to untyped function "_iter_schema_in_json" in typed context [no-untyped-call] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Call to untyped function "_iter_schema_in_json" in typed context [no-untyped-call] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Call to untyped function "iter_schema_cls_reference_in_operations" in typed context [no-untyped-call] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Call to untyped function "_iter_schema_in_request" in typed context [no-untyped-call] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Call to untyped function "_iter_schema_in_response" in typed context [no-untyped-call] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Call to untyped function "_iter_schema_in_json" in typed context [no-untyped-call] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Call to untyped function "_iter_schema_in_json" in typed context [no-untyped-call] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Call to untyped function "_iter_sub_schema" in typed context [no-untyped-call] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Call to untyped function "_iter_schema_in_json" in typed context [no-untyped-call] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Call to untyped function "_iter_schema_in_json" in typed context [no-untyped-call] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Call to untyped function "_iter_sub_schema" in typed context [no-untyped-call] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Call to untyped function "_iter_sub_schema" in typed context [no-untyped-call] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Call to untyped function "_iter_sub_schema" in typed context [no-untyped-call] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Call to untyped function "_iter_sub_schema" in typed context [no-untyped-call] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Call to untyped function "_iter_sub_schema" in typed context [no-untyped-call] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Call to untyped function "_iter_sub_schema" in typed context [no-untyped-call] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Call to untyped function "_iter_sub_schema" in typed context [no-untyped-call] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/cfg_reader.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/template_render_test.py:0: error: Class cannot subclass "CommandTestCase" (has type "Any") [misc] +src/aaz_dev/cli/tests/aaz_generator_tests/template_render_test.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/template_render_test.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/cli/tests/aaz_generator_tests/template_render_test.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/template_render_test.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/cli/tests/aaz_generator_tests/template_render_test.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/template_render_test.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/cli/tests/aaz_generator_tests/template_render_test.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/template_render_test.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/cli/tests/aaz_generator_tests/template_render_test.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/template_render_test.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/cli/tests/aaz_generator_tests/template_render_test.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/template_render_test.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/cli/tests/aaz_generator_tests/template_render_test.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/template_render_test.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/cli/tests/aaz_generator_tests/template_render_test.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/template_render_test.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/cli/tests/aaz_generator_tests/template_render_test.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/template_render_test.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/cli/tests/aaz_generator_tests/template_render_test.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/template_render_test.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/cli/tests/aaz_generator_tests/template_render_test.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/template_render_test.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/cli/tests/aaz_generator_tests/template_render_test.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/template_render_test.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/cli/tests/aaz_generator_tests/template_render_test.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/template_render_test.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/cli/tests/aaz_generator_tests/template_render_test.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/template_render_test.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/cli/tests/aaz_generator_tests/template_render_test.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/template_render_test.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/cli/tests/aaz_generator_tests/template_render_test.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/template_render_test.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/cli/tests/aaz_generator_tests/template_render_test.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/aaz_generator_tests/template_render_test.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/utils/config.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/utils/config.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/utils/config.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/utils/config.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/utils/config.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/utils/config.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/utils/config.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/utils/config.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/utils/config.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/utils/config.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/utils/config.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/swagger/tests/specs_tests/test_resource_provider.py:0: error: Class cannot subclass "SwaggerSpecsTestCase" (has type "Any") [misc] +src/aaz_dev/swagger/tests/specs_tests/test_resource_provider.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/swagger/tests/specs_tests/test_resource_provider.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/swagger/tests/specs_tests/test_resource_provider.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/swagger/tests/specs_tests/test_resource_provider.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/swagger/tests/specs_tests/test_resource_provider.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/swagger/tests/specs_tests/test_resource_provider.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/swagger/tests/specs_tests/test_resource_provider.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/swagger/tests/specs_tests/test_resource_provider.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/swagger/tests/specs_tests/test_resource_provider.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/swagger/model/schema/x_ms_odata.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/schema/example_item.py:0: error: Class cannot subclass "Model" (has type "Any") [misc] +src/aaz_dev/swagger/model/schema/example_item.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/schema/example_item.py:0: error: Call to untyped function "__init__" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/schema/example_item.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/schema/example_item.py:0: error: Call to untyped function "is_linked" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/schema/example_item.py:0: error: Call to untyped function "link" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/schema/example_item.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/schema/example_item.py:0: error: Class cannot subclass "DictType" (has type "Any") [misc] +src/aaz_dev/swagger/model/schema/example_item.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/schema/typespec/path_item.py:0: error: Class cannot subclass "Model" (has type "Any") [misc] +src/aaz_dev/swagger/model/schema/header.py:0: error: Call to untyped function "XmsClientNameField" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/schema/header.py:0: error: Call to untyped function "XmsHeaderCollectionPrefix" in typed context [no-untyped-call] +src/aaz_dev/cli/model/view/_profile.py:0: error: Class cannot subclass "Model" (has type "Any") [misc] +src/aaz_dev/cli/model/view/_profile.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/model/atomic/_command.py:0: error: Class cannot subclass "Model" (has type "Any") [misc] +src/aaz_dev/cli/model/atomic/_command.py:0: error: Class cannot subclass "Model" (has type "Any") [misc] +src/aaz_dev/command/controller/cfg_validator.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/cfg_validator.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/command/controller/cfg_validator.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/command/controller/cfg_validator.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/command/controller/cfg_validator.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/command/controller/cfg_validator.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/command/controller/cfg_validator.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/command/controller/cfg_validator.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/command/controller/cfg_validator.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/command/controller/cfg_validator.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/cli/model/view/_module.py:0: error: Class cannot subclass "Model" (has type "Any") [misc] +src/aaz_dev/cli/model/atomic/_command_group.py:0: error: Class cannot subclass "Model" (has type "Any") [misc] +src/aaz_dev/cli/model/atomic/_command_group.py:0: error: Class cannot subclass "Model" (has type "Any") [misc] +src/aaz_dev/swagger/model/specs/_utils.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/specs/_utils.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/specs/_utils.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/specs/_utils.py:0: error: Call to untyped function "camel_case_to_snake_case" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/specs/_utils.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/specs/_typespec_helper.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/specs/_typespec_helper.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/specs/_typespec_helper.py:0: error: Call to untyped function "_iter_entry_files" of "TypeSpecHelper" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/specs/_typespec_helper.py:0: error: Call to untyped function "_parse_main_tsp" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/specs/_typespec_helper.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/specs/_typespec_helper.py:0: error: Need type annotation for "files" (hint: "files: list[] = ...") [var-annotated] +src/aaz_dev/swagger/model/specs/_typespec_helper.py:0: error: Call to untyped function "_iter_entry_files" of "TypeSpecHelper" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/specs/_typespec_helper.py:0: error: Call to untyped function "_parse_main_tsp" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/specs/_typespec_helper.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/specs/_typespec_helper.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/specs/_typespec_helper.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/specs/_typespec_helper.py:0: error: Item "None" of "Match[str] | None" has no attribute "group" [union-attr] +src/aaz_dev/swagger/model/specs/_typespec_helper.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/specs/_typespec_helper.py:0: error: Call to untyped function "load_file_lines" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/specs/_typespec_helper.py:0: error: Call to untyped function "parse_by_line" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/specs/_typespec_helper.py:0: error: Call to untyped function "parse_by_line" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/specs/_typespec_helper.py:0: error: Call to untyped function "expand" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/specs/_swagger_loader.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/swagger/model/specs/_swagger_loader.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/swagger/model/specs/_swagger_loader.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/specs/_swagger_loader.py:0: error: Call to untyped function "get_loaded" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/specs/_swagger_loader.py:0: error: Call to untyped function "patch_swagger" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/specs/_swagger_loader.py:0: error: Call to untyped function "_cache_loaded" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/specs/_swagger_loader.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/specs/_swagger_loader.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/specs/_swagger_loader.py:0: error: Call to untyped function "_patch_dict" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/specs/_swagger_loader.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/specs/_swagger_loader.py:0: error: Call to untyped function "_patch" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/specs/_swagger_loader.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/specs/_swagger_loader.py:0: error: Call to untyped function "_patch_dict" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/specs/_swagger_loader.py:0: error: Call to untyped function "_patch_list" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/specs/_swagger_loader.py:0: error: Call to untyped function "_patch" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/specs/_swagger_loader.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/swagger/model/specs/_swagger_loader.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/swagger/model/specs/_swagger_loader.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/specs/_swagger_loader.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/specs/_swagger_loader.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/specs/_swagger_loader.py:0: error: Call to untyped function "_parse_ref_link" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/specs/_swagger_loader.py:0: error: Call to untyped function "get_loaded" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/specs/_swagger_loader.py:0: error: Call to untyped function "get_loaded" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/specs/_swagger_loader.py:0: error: Call to untyped function "load_file" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/specs/_swagger_loader.py:0: error: Call to untyped function "_cache_loaded" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/specs/_swagger_loader.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/schema/schema.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/schema/schema.py:0: error: Call to untyped function "_claim_polymorphic" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/schema/schema.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/schema/schema.py:0: error: Call to untyped function "schema_and_reference_schema_claim_function" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/schema/schema.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/schema/schema.py:0: error: Call to untyped function "schema_and_reference_schema_claim_function" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/schema/schema.py:0: error: Call to untyped function "_claim_polymorphic" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/schema/schema.py:0: error: Class cannot subclass "Model" (has type "Any") [misc] +src/aaz_dev/swagger/model/schema/schema.py:0: error: Call to untyped function "XmsClientNameField" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/schema/schema.py:0: error: Call to untyped function "XmsClientFlattenField" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/schema/schema.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/schema/schema.py:0: error: Call to untyped function "__init__" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/schema/schema.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/swagger/model/schema/schema.py:0: error: Item "None" of "Any | None" has no attribute "get_disc_parent" [union-attr] +src/aaz_dev/swagger/model/schema/schema.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/schema/schema.py:0: error: Call to untyped function "is_linked" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/schema/schema.py:0: error: Call to untyped function "link" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/schema/schema.py:0: error: Call to untyped function "link" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/schema/schema.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/schema/schema.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/schema/schema.py:0: error: Class cannot subclass "Model" (has type "Any") [misc] +src/aaz_dev/swagger/model/schema/schema.py:0: error: Call to untyped function "DataTypeFormatEnum" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/schema/schema.py:0: error: Call to untyped function "XmsEnumField" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/schema/schema.py:0: error: Call to untyped function "XmsClientNameField" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/schema/schema.py:0: error: Call to untyped function "XmsExternalField" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/schema/schema.py:0: error: Call to untyped function "XmsDiscriminatorValueField" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/schema/schema.py:0: error: Call to untyped function "XmsClientFlattenField" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/schema/schema.py:0: error: Call to untyped function "XmsMutabilityField" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/schema/schema.py:0: error: Call to untyped function "XmsClientDefaultField" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/schema/schema.py:0: error: Call to untyped function "XmsArmIdDetailsField" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/schema/schema.py:0: error: Call to untyped function "XmsAzureResourceField" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/schema/schema.py:0: error: Call to untyped function "XmsSecretField" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/schema/schema.py:0: error: Call to untyped function "XNullableField" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/schema/schema.py:0: error: Call to untyped function "XAccessibilityField" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/schema/schema.py:0: error: Call to untyped function "XAzSearchDeprecatedField" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/schema/schema.py:0: error: Call to untyped function "XSfClientLibField" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/schema/schema.py:0: error: Call to untyped function "XApimCodeNillableField" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/schema/schema.py:0: error: Call to untyped function "XCommentField" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/schema/schema.py:0: error: Call to untyped function "XAbstractField" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/schema/schema.py:0: error: Call to untyped function "XADLNameField" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/schema/schema.py:0: error: Call to untyped function "XCadlNameField" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/schema/schema.py:0: error: Call to untyped function "XTypespecNameField" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/schema/schema.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/schema/schema.py:0: error: Call to untyped function "__init__" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/schema/schema.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/swagger/model/schema/schema.py:0: error: Call to untyped function "is_linked" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/schema/schema.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/schema/schema.py:0: error: Call to untyped function "is_linked" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/schema/schema.py:0: error: Call to untyped function "link" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/schema/schema.py:0: error: Call to untyped function "link" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/schema/schema.py:0: error: Incompatible types in assignment (expression has type "bool", variable has type "XmsAzureResourceField") [assignment] +src/aaz_dev/swagger/model/schema/schema.py:0: error: Incompatible types in assignment (expression has type "bool", variable has type "XmsAzureResourceField") [assignment] +src/aaz_dev/swagger/model/schema/schema.py:0: error: Call to untyped function "_link_disc" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/schema/schema.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/swagger/model/schema/schema.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/swagger/model/schema/schema.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/controller/command_generator.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/controller/command_generator.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/controller/command_generator.py:0: error: Call to untyped function "generate_command_version" of "_CommandGenerator" in typed context [no-untyped-call] +src/aaz_dev/swagger/controller/command_generator.py:0: error: Call to untyped function "_set_api_version_parameter" in typed context [no-untyped-call] +src/aaz_dev/swagger/controller/command_generator.py:0: error: Call to untyped function "_generate_command_name" in typed context [no-untyped-call] +src/aaz_dev/swagger/controller/command_generator.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/controller/command_generator.py:0: error: Call to untyped function "generate_command_version" of "_CommandGenerator" in typed context [no-untyped-call] +src/aaz_dev/swagger/controller/command_generator.py:0: error: Call to untyped function "_set_api_version_parameter" in typed context [no-untyped-call] +src/aaz_dev/swagger/controller/command_generator.py:0: error: Call to untyped function "_set_api_version_parameter" in typed context [no-untyped-call] +src/aaz_dev/swagger/controller/command_generator.py:0: error: Call to untyped function "_filter_generic_update_parameters" in typed context [no-untyped-call] +src/aaz_dev/swagger/controller/command_generator.py:0: error: Call to untyped function "_generate_instance_update_operation" in typed context [no-untyped-call] +src/aaz_dev/swagger/controller/command_generator.py:0: error: Call to untyped function "generate_command_group_name_by_resource" in typed context [no-untyped-call] +src/aaz_dev/swagger/controller/command_generator.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/controller/command_generator.py:0: error: Call to untyped function "generate_command_version" of "_CommandGenerator" in typed context [no-untyped-call] +src/aaz_dev/swagger/controller/command_generator.py:0: error: Call to untyped function "_set_api_version_parameter" in typed context [no-untyped-call] +src/aaz_dev/swagger/controller/command_generator.py:0: error: Call to untyped function "_set_api_version_parameter" in typed context [no-untyped-call] +src/aaz_dev/swagger/controller/command_generator.py:0: error: Call to untyped function "_filter_generic_update_parameters" in typed context [no-untyped-call] +src/aaz_dev/swagger/controller/command_generator.py:0: error: Call to untyped function "_generate_instance_patch_operation" in typed context [no-untyped-call] +src/aaz_dev/swagger/controller/command_generator.py:0: error: Call to untyped function "generate_command_group_name_by_resource" in typed context [no-untyped-call] +src/aaz_dev/swagger/controller/command_generator.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/controller/command_generator.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/controller/command_generator.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/controller/command_generator.py:0: error: Call to untyped function "generate_command_group_name_by_resource" of "_CommandGenerator" in typed context [no-untyped-call] +src/aaz_dev/swagger/controller/command_generator.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/controller/command_generator.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/controller/command_generator.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/controller/command_generator.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/controller/command_generator.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/controller/command_generator.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/controller/command_generator.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/controller/command_generator.py:0: error: Call to untyped function "get_path_item" in typed context [no-untyped-call] +src/aaz_dev/swagger/controller/command_generator.py:0: error: Call to untyped function "get_parameterized_host" in typed context [no-untyped-call] +src/aaz_dev/swagger/controller/command_generator.py:0: error: Call to untyped function "generate_operation" in typed context [no-untyped-call] +src/aaz_dev/swagger/controller/command_generator.py:0: error: Call to untyped function "generate_command" of "_CommandGenerator" in typed context [no-untyped-call] +src/aaz_dev/swagger/controller/command_generator.py:0: error: Call to untyped function "generate_operation" in typed context [no-untyped-call] +src/aaz_dev/swagger/controller/command_generator.py:0: error: Call to untyped function "generate_command" of "_CommandGenerator" in typed context [no-untyped-call] +src/aaz_dev/swagger/controller/command_generator.py:0: error: Call to untyped function "generate_operation" in typed context [no-untyped-call] +src/aaz_dev/swagger/controller/command_generator.py:0: error: Call to untyped function "generate_command" of "_CommandGenerator" in typed context [no-untyped-call] +src/aaz_dev/swagger/controller/command_generator.py:0: error: Call to untyped function "generate_operation" in typed context [no-untyped-call] +src/aaz_dev/swagger/controller/command_generator.py:0: error: Call to untyped function "generate_command" of "_CommandGenerator" in typed context [no-untyped-call] +src/aaz_dev/swagger/controller/command_generator.py:0: error: Call to untyped function "generate_operation" in typed context [no-untyped-call] +src/aaz_dev/swagger/controller/command_generator.py:0: error: Call to untyped function "generate_command" of "_CommandGenerator" in typed context [no-untyped-call] +src/aaz_dev/swagger/controller/command_generator.py:0: error: Call to untyped function "generate_operation" in typed context [no-untyped-call] +src/aaz_dev/swagger/controller/command_generator.py:0: error: Call to untyped function "generate_command" of "_CommandGenerator" in typed context [no-untyped-call] +src/aaz_dev/swagger/controller/command_generator.py:0: error: Call to untyped function "generate_operation" in typed context [no-untyped-call] +src/aaz_dev/swagger/controller/command_generator.py:0: error: Call to untyped function "generate_operation" in typed context [no-untyped-call] +src/aaz_dev/swagger/controller/command_generator.py:0: error: Call to untyped function "generate_generic_update_command" of "_CommandGenerator" in typed context [no-untyped-call] +src/aaz_dev/swagger/controller/command_generator.py:0: error: Call to untyped function "generate_operation" in typed context [no-untyped-call] +src/aaz_dev/swagger/controller/command_generator.py:0: error: Call to untyped function "generate_operation" in typed context [no-untyped-call] +src/aaz_dev/swagger/controller/command_generator.py:0: error: Call to untyped function "generate_generic_update_command" of "_CommandGenerator" in typed context [no-untyped-call] +src/aaz_dev/swagger/controller/command_generator.py:0: error: Call to untyped function "generate_operation" in typed context [no-untyped-call] +src/aaz_dev/swagger/controller/command_generator.py:0: error: Call to untyped function "generate_operation" in typed context [no-untyped-call] +src/aaz_dev/swagger/controller/command_generator.py:0: error: Call to untyped function "generate_specific_update_command" of "_CommandGenerator" in typed context [no-untyped-call] +src/aaz_dev/swagger/controller/command_generator.py:0: error: Call to untyped function "generate_operation" in typed context [no-untyped-call] +src/aaz_dev/swagger/controller/command_generator.py:0: error: Call to untyped function "generate_command" of "_CommandGenerator" in typed context [no-untyped-call] +src/aaz_dev/swagger/controller/command_generator.py:0: error: Call to untyped function "optimize_command_description" of "_CommandGenerator" in typed context [no-untyped-call] +src/aaz_dev/swagger/controller/command_generator.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/controller/command_generator.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/controller/command_generator.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/controller/command_generator.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/controller/command_generator.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/swagger/controller/command_generator.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/swagger/controller/command_generator.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/controller/command_generator.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/controller/command_generator.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/controller/command_generator.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/controller/command_generator.py:0: error: Call to untyped function "format_http_operation" of "_CommandGenerator" in typed context [no-untyped-call] +src/aaz_dev/swagger/controller/command_generator.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/swagger/controller/command_generator.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/swagger/controller/command_generator.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/controller/command_generator.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/controller/command_generator.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/controller/command_generator.py:0: error: Call to untyped function "format_http_operation" of "_CommandGenerator" in typed context [no-untyped-call] +src/aaz_dev/swagger/controller/command_generator.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_fields.py:0: error: Class cannot subclass "BooleanType" (has type "Any") [misc] +src/aaz_dev/command/model/configuration/_fields.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_fields.py:0: error: Class cannot subclass "AAZStageField" (has type "Any") [misc] +src/aaz_dev/command/model/configuration/_fields.py:0: error: Class cannot subclass "StringType" (has type "Any") [misc] +src/aaz_dev/command/model/configuration/_fields.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_fields.py:0: error: Class cannot subclass "StringType" (has type "Any") [misc] +src/aaz_dev/command/model/configuration/_fields.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_fields.py:0: error: Class cannot subclass "BaseType" (has type "Any") [misc] +src/aaz_dev/command/model/configuration/_fields.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_fields.py:0: error: Class cannot subclass "StringType" (has type "Any") [misc] +src/aaz_dev/command/model/configuration/_fields.py:0: error: Class cannot subclass "StringType" (has type "Any") [misc] +src/aaz_dev/command/model/configuration/_fields.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_fields.py:0: error: Class cannot subclass "StringType" (has type "Any") [misc] +src/aaz_dev/command/model/configuration/_fields.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_fields.py:0: error: Class cannot subclass "StringType" (has type "Any") [misc] +src/aaz_dev/command/model/configuration/_fields.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_fields.py:0: error: Class cannot subclass "StringType" (has type "Any") [misc] +src/aaz_dev/command/model/configuration/_fields.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_fields.py:0: error: Class cannot subclass "StringType" (has type "Any") [misc] +src/aaz_dev/command/model/configuration/_fields.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_fields.py:0: error: Class cannot subclass "StringType" (has type "Any") [misc] +src/aaz_dev/command/model/configuration/_fields.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_fields.py:0: error: Class cannot subclass "StringType" (has type "Any") [misc] +src/aaz_dev/command/model/configuration/_fields.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_fields.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/command_tree.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/command_tree.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/command_tree.py:0: error: Call to untyped function "_build_simple_command" in typed context [no-untyped-call] +src/aaz_dev/command/controller/command_tree.py:0: error: Call to untyped function "_build_simple_command_group" in typed context [no-untyped-call] +src/aaz_dev/command/controller/command_tree.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/command_tree.py:0: error: Call to untyped function "_build_simple_command_group" in typed context [no-untyped-call] +src/aaz_dev/command/controller/command_tree.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/command_tree.py:0: error: Call to untyped function "_parse_title" in typed context [no-untyped-call] +src/aaz_dev/command/controller/command_tree.py:0: error: Call to untyped function "_parse_help" in typed context [no-untyped-call] +src/aaz_dev/command/controller/command_tree.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/command_tree.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/command_tree.py:0: error: Call to untyped function "_read_until" in typed context [no-untyped-call] +src/aaz_dev/command/controller/command_tree.py:0: error: Call to untyped function "_del_empty" in typed context [no-untyped-call] +src/aaz_dev/command/controller/command_tree.py:0: error: Call to untyped function "_read_until" in typed context [no-untyped-call] +src/aaz_dev/command/controller/command_tree.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/command/controller/command_tree.py:0: error: Function is missing a type annotation for one or more arguments [no-untyped-def] +src/aaz_dev/command/controller/command_tree.py:0: error: Call to untyped function "_parse_item" in typed context [no-untyped-call] +src/aaz_dev/command/controller/command_tree.py:0: error: Call to untyped function "CMDSpecsCommandGroupDict" in typed context [no-untyped-call] +src/aaz_dev/command/controller/command_tree.py:0: error: Call to untyped function "CMDSpecsCommandGroupDict" in typed context [no-untyped-call] +src/aaz_dev/command/controller/command_tree.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/command/controller/command_tree.py:0: error: Function is missing a type annotation for one or more arguments [no-untyped-def] +src/aaz_dev/command/controller/command_tree.py:0: error: Call to untyped function "_parse_item" in typed context [no-untyped-call] +src/aaz_dev/command/controller/command_tree.py:0: error: Call to untyped function "CMDSpecsCommandDict" in typed context [no-untyped-call] +src/aaz_dev/command/controller/command_tree.py:0: error: Call to untyped function "CMDSpecsCommandDict" in typed context [no-untyped-call] +src/aaz_dev/command/controller/command_tree.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/command_tree.py:0: error: Call to untyped function "_read_until" in typed context [no-untyped-call] +src/aaz_dev/command/controller/command_tree.py:0: error: Call to untyped function "_del_empty" in typed context [no-untyped-call] +src/aaz_dev/command/controller/command_tree.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/command_tree.py:0: error: Need type annotation for "result" (hint: "result: list[] = ...") [var-annotated] +src/aaz_dev/command/controller/command_tree.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/command_tree.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/command/controller/command_tree.py:0: error: Call to untyped function "parse_command_group_info" of "CMDSpecsPartialCommandGroup" in typed context [no-untyped-call] +src/aaz_dev/command/controller/command_tree.py:0: error: Missing type parameters for generic type "dict" [type-arg] +src/aaz_dev/command/controller/command_tree.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/command_tree.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/command_tree.py:0: error: Call to untyped function "load" in typed context [no-untyped-call] +src/aaz_dev/command/controller/command_tree.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/command/controller/command_tree.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/command/controller/command_tree.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/command_tree.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/command/controller/command_tree.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/command/controller/command_tree.py:0: error: Missing type parameters for generic type "dict" [type-arg] +src/aaz_dev/command/controller/command_tree.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/command_tree.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/command_tree.py:0: error: Call to untyped function "load" in typed context [no-untyped-call] +src/aaz_dev/command/controller/command_tree.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/command/controller/command_tree.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/command/controller/command_tree.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/command_tree.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/command/controller/command_tree.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/command/controller/command_tree.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/command_tree.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/command/controller/command_tree.py:0: error: Call to untyped function "parse_command_info" in typed context [no-untyped-call] +src/aaz_dev/command/controller/command_tree.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/command_tree.py:0: error: Call to untyped function "load" in typed context [no-untyped-call] +src/aaz_dev/command/controller/command_tree.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/command/controller/command_tree.py:0: error: Call to untyped function "load" in typed context [no-untyped-call] +src/aaz_dev/command/controller/command_tree.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/command/controller/command_tree.py:0: error: Call to untyped function "build_simple_command_tree" in typed context [no-untyped-call] +src/aaz_dev/command/controller/command_tree.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/command_tree.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/command_tree.py:0: error: Call to untyped function "find_command_group" in typed context [no-untyped-call] +src/aaz_dev/command/controller/command_tree.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/command_tree.py:0: error: Call to untyped function "find_command_group" in typed context [no-untyped-call] +src/aaz_dev/command/controller/command_tree.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/command_tree.py:0: error: Call to untyped function "iter_command_groups" in typed context [no-untyped-call] +src/aaz_dev/command/controller/command_tree.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/command_tree.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/command_tree.py:0: error: Call to untyped function "create_command_group" in typed context [no-untyped-call] +src/aaz_dev/command/controller/command_tree.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/command_tree.py:0: error: Call to untyped function "iter_commands" in typed context [no-untyped-call] +src/aaz_dev/command/controller/command_tree.py:0: error: Call to untyped function "find_command_group" in typed context [no-untyped-call] +src/aaz_dev/command/controller/command_tree.py:0: error: Call to untyped function "delete_command_group" in typed context [no-untyped-call] +src/aaz_dev/command/controller/command_tree.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/command_tree.py:0: error: Call to untyped function "create_command_group" in typed context [no-untyped-call] +src/aaz_dev/command/controller/command_tree.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/command_tree.py:0: error: Call to untyped function "find_command_group" in typed context [no-untyped-call] +src/aaz_dev/command/controller/command_tree.py:0: error: Call to untyped function "delete_command_group" in typed context [no-untyped-call] +src/aaz_dev/command/controller/command_tree.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/command_tree.py:0: error: Call to untyped function "find_command" in typed context [no-untyped-call] +src/aaz_dev/command/controller/command_tree.py:0: error: Call to untyped function "delete_command" in typed context [no-untyped-call] +src/aaz_dev/command/controller/command_tree.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/command_tree.py:0: error: Call to untyped function "create_command" in typed context [no-untyped-call] +src/aaz_dev/command/controller/command_tree.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/command_tree.py:0: error: Call to untyped function "find_command" in typed context [no-untyped-call] +src/aaz_dev/command/controller/command_tree.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/command/controller/command_tree.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/command/controller/command_tree.py:0: error: Call to untyped function "iter_command_groups" in typed context [no-untyped-call] +src/aaz_dev/command/controller/command_tree.py:0: error: Call to untyped function "iter_commands" in typed context [no-untyped-call] +src/aaz_dev/command/controller/command_tree.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/command/controller/command_tree.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/command/controller/command_tree.py:0: error: Call to untyped function "find_command_group" in typed context [no-untyped-call] +src/aaz_dev/command/controller/command_tree.py:0: error: Call to untyped function "find_command" in typed context [no-untyped-call] +src/aaz_dev/command/controller/command_tree.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/controller/portal_cli_generator.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/controller/portal_cli_generator.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/cli/controller/portal_cli_generator.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/controller/portal_cli_generator.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/controller/portal_cli_generator.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/controller/portal_cli_generator.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/controller/portal_cli_generator.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/controller/portal_cli_generator.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/controller/portal_cli_generator.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/controller/portal_cli_generator.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/controller/portal_cli_generator.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/controller/portal_cli_generator.py:0: error: Need type annotation for "help_info" (hint: "help_info: dict[, ] = ...") [var-annotated] +src/aaz_dev/cli/controller/portal_cli_generator.py:0: error: Call to untyped function "generate_cmd_learn_more" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/portal_cli_generator.py:0: error: Need type annotation for "option_list" (hint: "option_list: list[] = ...") [var-annotated] +src/aaz_dev/cli/controller/portal_cli_generator.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/controller/portal_cli_generator.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/controller/portal_cli_generator.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/controller/portal_cli_generator.py:0: error: Call to untyped function "generate_default_example" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/portal_cli_generator.py:0: error: Call to untyped function "find_para_var" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/portal_cli_generator.py:0: error: Call to untyped function "generate_default_example" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/portal_cli_generator.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/controller/portal_cli_generator.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/controller/portal_cli_generator.py:0: error: Call to untyped function "fill_cmd_name" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/portal_cli_generator.py:0: error: Call to untyped function "fill_cmd_desc" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/portal_cli_generator.py:0: error: Call to untyped function "fill_cmd_path" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/portal_cli_generator.py:0: error: Call to untyped function "fill_cmd_confirmation" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/portal_cli_generator.py:0: error: Call to untyped function "fill_cmd_help" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/portal_cli_generator.py:0: error: Call to untyped function "__check_cmd_examples" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/portal_cli_generator.py:0: error: Call to untyped function "fill_cmd_examples" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/portal_cli_generator.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/controller/portal_cli_generator.py:0: error: Need type annotation for "cmd_portal_info" (hint: "cmd_portal_info: dict[, ] = ...") [var-annotated] +src/aaz_dev/cli/controller/portal_cli_generator.py:0: error: Call to untyped function "fill_resource_type" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/portal_cli_generator.py:0: error: Call to untyped function "fill_api_version" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/portal_cli_generator.py:0: error: Call to untyped function "generate_base_learn_more" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/portal_cli_generator.py:0: error: Need type annotation for "cmd_info" (hint: "cmd_info: dict[, ] = ...") [var-annotated] +src/aaz_dev/cli/controller/portal_cli_generator.py:0: error: Call to untyped function "generate_cmd_info" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/portal_cli_generator.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/controller/portal_cli_generator.py:0: error: Call to untyped function "__check_cmd_examples" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/portal_cli_generator.py:0: error: Need type annotation for "cmd_portal_info" (hint: "cmd_portal_info: dict[, ] = ...") [var-annotated] +src/aaz_dev/cli/controller/portal_cli_generator.py:0: error: Call to untyped function "fill_resource_type" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/portal_cli_generator.py:0: error: Call to untyped function "fill_api_version" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/portal_cli_generator.py:0: error: Call to untyped function "generate_base_learn_more" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/portal_cli_generator.py:0: error: Call to untyped function "generate_cmd_info" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/portal_cli_generator.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/controller/portal_cli_generator.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/controller/portal_cli_generator.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/controller/portal_cli_generator.py:0: error: Call to untyped function "get_portal_file_path" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/portal_cli_generator.py:0: error: Call to untyped function "valid_portal_json_format" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/portal_cli_generator.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/controller/portal_cli_generator.py:0: error: Call to untyped function "generate_portal_file" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/portal_cli_generator.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/controller/portal_cli_generator.py:0: error: Call to untyped function "generate_command_portal_raw" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/portal_cli_generator.py:0: error: Call to untyped function "PortalCliGenerator" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_module_manager.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_module_manager.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_module_manager.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_module_manager.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_module_manager.py:0: error: Call to untyped function "get_mod_path" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_module_manager.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_module_manager.py:0: error: Need type annotation for "group_nodes" [var-annotated] +src/aaz_dev/cli/controller/az_module_manager.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_module_manager.py:0: error: Call to untyped function "get_mod_path" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_module_manager.py:0: error: Call to untyped function "_load_view_profile" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_module_manager.py:0: error: Call to untyped function "get_aaz_path" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_module_manager.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_module_manager.py:0: error: Call to untyped function "get_aaz_path" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_module_manager.py:0: error: Call to untyped function "_patch_module" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_module_manager.py:0: error: Call to untyped function "get_mod_path" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_module_manager.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_module_manager.py:0: error: Call to untyped function "get_aaz_path" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_module_manager.py:0: error: Argument 1 to "startswith" of "str" has incompatible type "str | Any | None"; expected "str | tuple[str, ...]" [arg-type] +src/aaz_dev/cli/controller/az_module_manager.py:0: error: Unsupported operand types for + ("None" and "int") [operator] +src/aaz_dev/cli/controller/az_module_manager.py:0: note: Left operand is of type "int | None" +src/aaz_dev/cli/controller/az_module_manager.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_module_manager.py:0: error: Call to untyped function "_load_view_command_groups" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_module_manager.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_module_manager.py:0: error: Call to untyped function "_load_view_command_group" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_module_manager.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_module_manager.py:0: error: Call to untyped function "_load_view_command" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_module_manager.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_module_manager.py:0: error: Need type annotation for "register_info_lines" (hint: "register_info_lines: list[] = ...") [var-annotated] +src/aaz_dev/cli/controller/az_module_manager.py:0: error: Call to untyped function "_load_view_command_groups" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_module_manager.py:0: error: Call to untyped function "_load_view_commands" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_module_manager.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_module_manager.py:0: error: Need type annotation for "register_info_lines" (hint: "register_info_lines: list[] = ...") [var-annotated] +src/aaz_dev/cli/controller/az_module_manager.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_module_manager.py:0: error: Call to untyped function "_load_view_command" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_module_manager.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_module_manager.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_module_manager.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/cli/controller/az_module_manager.py:0: error: Call to untyped function "_find_module_folder" of "AzMainManager" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_module_manager.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_module_manager.py:0: error: Call to untyped function "pkg_name" of "AzModuleManager" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_module_manager.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_module_manager.py:0: error: Call to untyped function "get_mod_path" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_module_manager.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_module_manager.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_module_manager.py:0: error: Call to untyped function "get_mod_path" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_module_manager.py:0: error: Call to untyped function "pkg_name" of "AzModuleManager" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_module_manager.py:0: error: Call to untyped function "get_mod_path" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_module_manager.py:0: error: Call to untyped function "_load_view_profile" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_module_manager.py:0: error: Call to untyped function "get_aaz_path" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_module_manager.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_module_manager.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_module_manager.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/cli/controller/az_module_manager.py:0: error: Call to untyped function "_find_module_folder" of "AzExtensionManager" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_module_manager.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_module_manager.py:0: error: Call to untyped function "_get_module_name_by_path" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_module_manager.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_module_manager.py:0: error: Call to untyped function "pkg_name" of "AzModuleManager" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_module_manager.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_module_manager.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_module_manager.py:0: error: Call to untyped function "get_mod_path" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_module_manager.py:0: error: Call to untyped function "_generate_mod_ext_name" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_module_manager.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_module_manager.py:0: error: Call to untyped function "get_mod_ext_path" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_module_manager.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_module_manager.py:0: error: Call to untyped function "_get_module_name_by_path" of "AzExtensionManager" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_module_manager.py:0: error: Call to untyped function "_get_module_name_by_path" of "AzExtensionManager" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_module_manager.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_module_manager.py:0: error: Call to untyped function "get_mod_ext_path" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_module_manager.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_module_manager.py:0: error: Call to untyped function "update_module" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_module_manager.py:0: error: Call to untyped function "create_or_update_mod_azext_metadata" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_module_manager.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_module_manager.py:0: error: Call to untyped function "get_mod_path" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_module_manager.py:0: error: Call to untyped function "get_mod_ext_path" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_module_manager.py:0: error: Call to untyped function "create_or_update_mod_azext_metadata" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_module_manager.py:0: error: Call to untyped function "pkg_name" of "AzModuleManager" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_module_manager.py:0: error: Call to untyped function "get_mod_path" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_module_manager.py:0: error: Call to untyped function "_load_view_profile" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_module_manager.py:0: error: Call to untyped function "get_aaz_path" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_command_ctx.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_command_ctx.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/cli/controller/az_command_ctx.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_command_ctx.py:0: error: Call to untyped function "AzArgClsGenerator" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_command_ctx.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_command_ctx.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_command_ctx.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_command_ctx.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_command_ctx.py:0: error: Call to untyped function "AzRequestClsGenerator" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_command_ctx.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_command_ctx.py:0: error: Call to untyped function "AzResponseClsGenerator" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_command_ctx.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_command_ctx.py:0: error: Call to untyped function "get_variant" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_command_ctx.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_atomic_profile_builder.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_atomic_profile_builder.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_atomic_profile_builder.py:0: error: Call to untyped function "_build_command_group" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_atomic_profile_builder.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_atomic_profile_builder.py:0: error: Call to untyped function "_build_command_group_from_aaz" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_atomic_profile_builder.py:0: error: Call to untyped function "_build_command" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_atomic_profile_builder.py:0: error: Call to untyped function "_complete_command_wait_info" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_atomic_profile_builder.py:0: error: Call to untyped function "_build_command_group" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_atomic_profile_builder.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_atomic_profile_builder.py:0: error: Call to untyped function "_build_command_from_aaz" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_atomic_profile_builder.py:0: error: Call to untyped function "_build_client_from_aaz" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_atomic_profile_builder.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_atomic_profile_builder.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_atomic_profile_builder.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_atomic_profile_builder.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_atomic_profile_builder.py:0: error: Need type annotation for "wait_cmd_rids" (hint: "wait_cmd_rids: dict[, ] = ...") [var-annotated] +src/aaz_dev/cli/controller/az_atomic_profile_builder.py:0: error: Call to untyped function "_has_provisioning_state" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_atomic_profile_builder.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/tests/main_tests/manager_test.py:0: error: Class cannot subclass "CommandTestCase" (has type "Any") [misc] +src/aaz_dev/cli/tests/main_tests/manager_test.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/main_tests/manager_test.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/main_tests/manager_test.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/cli/tests/main_tests/manager_test.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/main_tests/manager_test.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/cli/tests/extension_tests/manager_test.py:0: error: Class cannot subclass "CommandTestCase" (has type "Any") [misc] +src/aaz_dev/cli/tests/extension_tests/manager_test.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/extension_tests/manager_test.py:0: error: Function "exists" could always be true in boolean context [truthy-function] +src/aaz_dev/cli/tests/extension_tests/manager_test.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/extension_tests/manager_test.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/cli/tests/api_tests/test_az.py:0: error: Class cannot subclass "CommandTestCase" (has type "Any") [misc] +src/aaz_dev/cli/tests/api_tests/test_az.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/api_tests/test_az.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/cli/tests/api_tests/test_az.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/api_tests/test_az.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/cli/tests/api_tests/test_az.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/api_tests/test_az.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/cli/tests/api_tests/test_az.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/api_tests/test_az.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/cli/tests/api_tests/test_az.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/api_tests/test_az.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/cli/tests/api_tests/test_az.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/api_tests/test_az.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/cli/tests/api_tests/test_az.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/api_tests/test_az.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/cli/tests/api_tests/test_az.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/tests/api_tests/test_az.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/cli/model/atomic/_profile.py:0: error: Class cannot subclass "Model" (has type "Any") [misc] +src/aaz_dev/cli/model/atomic/_profile.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/model/atomic/_profile.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/model/atomic/_profile.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/model/atomic/_profile.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/swagger/model/specs/_resource.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/specs/_resource.py:0: error: Call to untyped function "ResourceVersion" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/specs/_resource.py:0: error: Call to untyped function "_get_file_path_version" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/specs/_resource.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/swagger/model/specs/_resource.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/swagger/model/specs/_resource.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/specs/_resource.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/swagger/model/specs/_resource.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/swagger/model/specs/_resource.py:0: error: Call to untyped function "_parse_operation_group_name" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/specs/_resource.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/specs/_resource.py:0: error: Call to untyped function "map_path_2_repo" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/specs/_resource.py:0: error: Need type annotation for "words" (hint: "words: list[] = ...") [var-annotated] +src/aaz_dev/swagger/model/specs/_resource.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/specs/_resource.py:0: error: Call to untyped function "ResourceVersion" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/specs/_resource.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/specs/_resource.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/specs/_resource.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/specs/_resource.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/swagger/model/specs/_resource.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/specs/_resource.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/schema/response.py:0: error: Class cannot subclass "Model" (has type "Any") [misc] +src/aaz_dev/swagger/model/schema/response.py:0: error: Call to untyped function "XmsExamplesField" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/schema/response.py:0: error: Call to untyped function "XmsErrorResponseField" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/schema/response.py:0: error: Call to untyped function "XNullableField" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/schema/response.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/schema/response.py:0: error: Call to untyped function "is_linked" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/schema/response.py:0: error: Call to untyped function "link" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/schema/response.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/schema/response.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/schema/parameter.py:0: error: Class cannot subclass "Model" (has type "Any") [misc] +src/aaz_dev/swagger/model/schema/parameter.py:0: error: Call to untyped function "XmsParameterGroupingField" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/schema/parameter.py:0: error: Call to untyped function "XmsParameterLocationField" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/schema/parameter.py:0: error: Call to untyped function "XmsClientNameField" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/schema/parameter.py:0: error: Call to untyped function "XmsClientFlattenField" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/schema/parameter.py:0: error: Call to untyped function "XmsClientDefaultField" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/schema/parameter.py:0: error: Call to untyped function "XmsArmIdDetailsField" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/schema/parameter.py:0: error: Call to untyped function "XAccessibilityField" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/schema/parameter.py:0: error: Call to untyped function "XRequiredField" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/schema/parameter.py:0: error: Call to untyped function "XPublishField" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/schema/parameter.py:0: error: Call to untyped function "XClientNameField" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/schema/parameter.py:0: error: Call to untyped function "XNewPatternField" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/schema/parameter.py:0: error: Call to untyped function "XPreviousPatternField" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/schema/parameter.py:0: error: Call to untyped function "XCommentField" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/schema/parameter.py:0: error: Call to untyped function "XOriginalNameField" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/schema/parameter.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/schema/parameter.py:0: error: Incompatible types in assignment (expression has type "str", base class "ParameterBase" defined the type as "None") [assignment] +src/aaz_dev/swagger/model/schema/parameter.py:0: error: Call to untyped function "XmsApiVersionField" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/schema/parameter.py:0: error: Call to untyped function "XmsSkipUrlEncodingField" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/schema/parameter.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/schema/parameter.py:0: error: Call to untyped function "to_cmd" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/schema/parameter.py:0: error: Incompatible types in assignment (expression has type "str", base class "ParameterBase" defined the type as "None") [assignment] +src/aaz_dev/swagger/model/schema/parameter.py:0: error: Call to untyped function "XmsClientRequestIdField" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/schema/parameter.py:0: error: Call to untyped function "XmsHeaderCollectionPrefix" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/schema/parameter.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/swagger/model/schema/parameter.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/swagger/model/schema/parameter.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/schema/parameter.py:0: error: Call to untyped function "to_cmd" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/schema/parameter.py:0: error: Incompatible types in assignment (expression has type "str", base class "ParameterBase" defined the type as "None") [assignment] +src/aaz_dev/swagger/model/schema/parameter.py:0: error: Call to untyped function "XmsSkipURLEncodingField" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/schema/parameter.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/schema/parameter.py:0: error: Call to untyped function "to_cmd" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/schema/parameter.py:0: error: Incompatible types in assignment (expression has type "str", base class "ParameterBase" defined the type as "None") [assignment] +src/aaz_dev/swagger/model/schema/parameter.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/schema/parameter.py:0: error: Incompatible types in assignment (expression has type "str", base class "ParameterBase" defined the type as "None") [assignment] +src/aaz_dev/swagger/model/schema/parameter.py:0: error: Call to untyped function "XNullableField" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/schema/parameter.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/schema/parameter.py:0: error: Call to untyped function "is_linked" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/schema/parameter.py:0: error: Call to untyped function "link" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/schema/parameter.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/schema/parameter.py:0: error: Class cannot subclass "PolyModelType" (has type "Any") [misc] +src/aaz_dev/command/model/configuration/_resource.py:0: error: Class cannot subclass "Model" (has type "Any") [misc] +src/aaz_dev/command/model/configuration/_resource.py:0: error: Call to untyped function "CMDResourceIdField" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_resource.py:0: error: Call to untyped function "CMDVersionField" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_resource.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_resource.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_resource.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_resource.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_resource.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_output.py:0: error: Class cannot subclass "Model" (has type "Any") [misc] +src/aaz_dev/command/model/configuration/_output.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_output.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_output.py:0: error: Incompatible types in assignment (expression has type "str", base class "CMDOutput" defined the type as "None") [assignment] +src/aaz_dev/command/model/configuration/_output.py:0: error: Call to untyped function "CMDVariantField" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_output.py:0: error: Call to untyped function "CMDBooleanField" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_output.py:0: error: Incompatible types in assignment (expression has type "str", base class "CMDOutput" defined the type as "None") [assignment] +src/aaz_dev/command/model/configuration/_output.py:0: error: Call to untyped function "CMDVariantField" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_output.py:0: error: Call to untyped function "CMDBooleanField" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_output.py:0: error: Call to untyped function "CMDVariantField" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_output.py:0: error: Incompatible types in assignment (expression has type "str", base class "CMDOutput" defined the type as "None") [assignment] +src/aaz_dev/command/model/configuration/_output.py:0: error: Call to untyped function "CMDVariantField" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_format.py:0: error: Class cannot subclass "Model" (has type "Any") [misc] +src/aaz_dev/command/model/configuration/_format.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_format.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_format.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_format.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_format.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_format.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_format.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_format.py:0: error: Call to untyped function "CMDBooleanField" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_format.py:0: error: Call to untyped function "CMDBooleanField" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_format.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_format.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_format.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_format.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_format.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_format.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_format.py:0: error: Call to untyped function "CMDBooleanField" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_format.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_format.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_condition.py:0: error: Class cannot subclass "Model" (has type "Any") [misc] +src/aaz_dev/command/model/configuration/_condition.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_condition.py:0: error: Incompatible types in assignment (expression has type "str", base class "CMDConditionOperator" defined the type as "None") [assignment] +src/aaz_dev/command/model/configuration/_condition.py:0: error: Incompatible types in assignment (expression has type "str", base class "CMDConditionOperator" defined the type as "None") [assignment] +src/aaz_dev/command/model/configuration/_condition.py:0: error: Incompatible types in assignment (expression has type "str", base class "CMDConditionOperator" defined the type as "None") [assignment] +src/aaz_dev/command/model/configuration/_condition.py:0: error: Incompatible types in assignment (expression has type "str", base class "CMDConditionOperator" defined the type as "None") [assignment] +src/aaz_dev/command/model/configuration/_condition.py:0: error: Call to untyped function "CMDVariantField" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_condition.py:0: error: Class cannot subclass "Model" (has type "Any") [misc] +src/aaz_dev/command/model/configuration/_condition.py:0: error: Call to untyped function "CMDVariantField" in typed context [no-untyped-call] +src/aaz_dev/command/controller/specs_manager.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/command/controller/specs_manager.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/command/controller/specs_manager.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/command/controller/specs_manager.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/command/controller/specs_manager.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/command/controller/specs_manager.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/specs_manager.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/specs_manager.py:0: error: Call to untyped function "get_command_group_folder" in typed context [no-untyped-call] +src/aaz_dev/command/controller/specs_manager.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/specs_manager.py:0: error: Call to untyped function "get_command_group_folder" in typed context [no-untyped-call] +src/aaz_dev/command/controller/specs_manager.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/specs_manager.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/specs_manager.py:0: error: Call to untyped function "get_resource_plane_folder" in typed context [no-untyped-call] +src/aaz_dev/command/controller/specs_manager.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/specs_manager.py:0: error: Call to untyped function "get_resource_plane_folder" in typed context [no-untyped-call] +src/aaz_dev/command/controller/specs_manager.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/specs_manager.py:0: error: Call to untyped function "get_resource_cfg_folder" in typed context [no-untyped-call] +src/aaz_dev/command/controller/specs_manager.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/specs_manager.py:0: error: Call to untyped function "get_resource_cfg_folder" in typed context [no-untyped-call] +src/aaz_dev/command/controller/specs_manager.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/specs_manager.py:0: error: Call to untyped function "get_resource_cfg_folder" in typed context [no-untyped-call] +src/aaz_dev/command/controller/specs_manager.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/specs_manager.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/specs_manager.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/specs_manager.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/specs_manager.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/specs_manager.py:0: error: Call to untyped function "CfgReader" in typed context [no-untyped-call] +src/aaz_dev/command/controller/specs_manager.py:0: error: Call to untyped function "get_resource_cfg_file_paths" in typed context [no-untyped-call] +src/aaz_dev/command/controller/specs_manager.py:0: error: Call to untyped function "get_resource_cfg_ref_file_path" in typed context [no-untyped-call] +src/aaz_dev/command/controller/specs_manager.py:0: error: Call to untyped function "get_resource_cfg_file_paths" in typed context [no-untyped-call] +src/aaz_dev/command/controller/specs_manager.py:0: error: Call to untyped function "render_resource_cfg_to_json" in typed context [no-untyped-call] +src/aaz_dev/command/controller/specs_manager.py:0: error: Call to untyped function "render_resource_cfg_to_xml" in typed context [no-untyped-call] +src/aaz_dev/command/controller/specs_manager.py:0: error: Call to untyped function "CfgReader" in typed context [no-untyped-call] +src/aaz_dev/command/controller/specs_manager.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/specs_manager.py:0: error: Call to untyped function "load_resource_cfg_reader" in typed context [no-untyped-call] +src/aaz_dev/command/controller/specs_manager.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/specs_manager.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/specs_manager.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/specs_manager.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/specs_manager.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/specs_manager.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/specs_manager.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/specs_manager.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/specs_manager.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/command/controller/specs_manager.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/command/controller/specs_manager.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/specs_manager.py:0: error: Call to untyped function "CfgReader" in typed context [no-untyped-call] +src/aaz_dev/command/controller/specs_manager.py:0: error: Call to untyped function "iter_commands" in typed context [no-untyped-call] +src/aaz_dev/command/controller/specs_manager.py:0: error: Call to untyped function "delete_command_version" in typed context [no-untyped-call] +src/aaz_dev/command/controller/specs_manager.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/specs_manager.py:0: error: Call to untyped function "CfgReader" in typed context [no-untyped-call] +src/aaz_dev/command/controller/specs_manager.py:0: error: Call to untyped function "CfgValidator" in typed context [no-untyped-call] +src/aaz_dev/command/controller/specs_manager.py:0: error: Call to untyped function "verify" in typed context [no-untyped-call] +src/aaz_dev/command/controller/specs_manager.py:0: error: Call to untyped function "load_resource_cfg_reader" in typed context [no-untyped-call] +src/aaz_dev/command/controller/specs_manager.py:0: error: Call to untyped function "_remove_cfg" in typed context [no-untyped-call] +src/aaz_dev/command/controller/specs_manager.py:0: error: Call to untyped function "iter_commands" in typed context [no-untyped-call] +src/aaz_dev/command/controller/specs_manager.py:0: error: Call to untyped function "update_command_version" in typed context [no-untyped-call] +src/aaz_dev/command/controller/specs_manager.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/specs_manager.py:0: error: Call to untyped function "ClientCfgReader" in typed context [no-untyped-call] +src/aaz_dev/command/controller/specs_manager.py:0: error: Call to untyped function "get_resource_client_cfg_paths" in typed context [no-untyped-call] +src/aaz_dev/command/controller/specs_manager.py:0: error: Call to untyped function "render_resource_cfg_to_json" in typed context [no-untyped-call] +src/aaz_dev/command/controller/specs_manager.py:0: error: Call to untyped function "render_resource_cfg_to_xml" in typed context [no-untyped-call] +src/aaz_dev/command/controller/specs_manager.py:0: error: Call to untyped function "ClientCfgReader" in typed context [no-untyped-call] +src/aaz_dev/command/controller/specs_manager.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/specs_manager.py:0: error: Call to untyped function "load_client_cfg_reader" in typed context [no-untyped-call] +src/aaz_dev/command/controller/specs_manager.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/command/controller/specs_manager.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/command/controller/specs_manager.py:0: error: Call to untyped function "verify_updated_command_tree" in typed context [no-untyped-call] +src/aaz_dev/command/controller/specs_manager.py:0: error: Call to untyped function "find_command" in typed context [no-untyped-call] +src/aaz_dev/command/controller/specs_manager.py:0: error: Call to untyped function "get_command_readme_path" in typed context [no-untyped-call] +src/aaz_dev/command/controller/specs_manager.py:0: error: Call to untyped function "render_command_readme" in typed context [no-untyped-call] +src/aaz_dev/command/controller/specs_manager.py:0: error: Call to untyped function "find_command_group" in typed context [no-untyped-call] +src/aaz_dev/command/controller/specs_manager.py:0: error: Call to untyped function "get_command_group_folder" in typed context [no-untyped-call] +src/aaz_dev/command/controller/specs_manager.py:0: error: Call to untyped function "get_command_group_readme_path" in typed context [no-untyped-call] +src/aaz_dev/command/controller/specs_manager.py:0: error: Call to untyped function "render_command_tree_readme" in typed context [no-untyped-call] +src/aaz_dev/command/controller/specs_manager.py:0: error: Call to untyped function "render_command_group_readme" in typed context [no-untyped-call] +src/aaz_dev/command/controller/specs_manager.py:0: error: Call to untyped function "get_resource_cfg_file_paths" in typed context [no-untyped-call] +src/aaz_dev/command/controller/specs_manager.py:0: error: Call to untyped function "get_resource_cfg_ref_file_path" in typed context [no-untyped-call] +src/aaz_dev/command/controller/specs_manager.py:0: error: Call to untyped function "render_resource_ref_readme" in typed context [no-untyped-call] +src/aaz_dev/command/controller/specs_manager.py:0: error: Call to untyped function "render_resource_cfg_to_json" in typed context [no-untyped-call] +src/aaz_dev/command/controller/specs_manager.py:0: error: Call to untyped function "render_resource_cfg_to_xml" in typed context [no-untyped-call] +src/aaz_dev/command/controller/specs_manager.py:0: error: Call to untyped function "get_resource_client_cfg_paths" in typed context [no-untyped-call] +src/aaz_dev/command/controller/specs_manager.py:0: error: Call to untyped function "render_resource_cfg_to_json" in typed context [no-untyped-call] +src/aaz_dev/command/controller/specs_manager.py:0: error: Call to untyped function "render_resource_cfg_to_xml" in typed context [no-untyped-call] +src/aaz_dev/command/controller/specs_manager.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/specs_manager.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/specs_manager.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/specs_manager.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/specs_manager.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/specs_manager.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_command_generator.py:0: error: Function is missing a type annotation for one or more arguments [no-untyped-def] +src/aaz_dev/cli/controller/az_command_generator.py:0: error: Call to untyped function "AzCommandCtx" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_command_generator.py:0: error: Call to untyped function "AzArgGroupGenerator" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_command_generator.py:0: error: Call to untyped function "AzArgGroupGenerator" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_command_generator.py:0: error: Call to untyped function "AzJsonSelectorGenerator" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_command_generator.py:0: error: Call to untyped function "AzHttpOperationGenerator" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_command_generator.py:0: error: Call to untyped function "AzJsonUpdateOperationGenerator" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_command_generator.py:0: error: Incompatible types in assignment (expression has type "AzJsonUpdateOperationGenerator", variable has type "AzHttpOperationGenerator") [assignment] +src/aaz_dev/cli/controller/az_command_generator.py:0: error: Call to untyped function "AzJsonCreateOperationGenerator" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_command_generator.py:0: error: Incompatible types in assignment (expression has type "AzJsonCreateOperationGenerator", variable has type "AzHttpOperationGenerator") [assignment] +src/aaz_dev/cli/controller/az_command_generator.py:0: error: Call to untyped function "AzJsonDeleteOperationGenerator" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_command_generator.py:0: error: Incompatible types in assignment (expression has type "AzJsonDeleteOperationGenerator", variable has type "AzHttpOperationGenerator") [assignment] +src/aaz_dev/cli/controller/az_command_generator.py:0: error: "AzHttpOperationGenerator" has no attribute "variant_key" [attr-defined] +src/aaz_dev/cli/controller/az_command_generator.py:0: error: "AzHttpOperationGenerator" has no attribute "is_selector_variant" [attr-defined] +src/aaz_dev/cli/controller/az_command_generator.py:0: error: Unsupported operand types for + ("None" and "int") [operator] +src/aaz_dev/cli/controller/az_command_generator.py:0: note: Left operand is of type "int | None" +src/aaz_dev/cli/controller/az_command_generator.py:0: error: Unsupported operand types for - ("int" and "None") [operator] +src/aaz_dev/cli/controller/az_command_generator.py:0: note: Right operand is of type "int | None" +src/aaz_dev/cli/controller/az_command_generator.py:0: error: Call to untyped function "AzGenericUpdateOperationGenerator" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_command_generator.py:0: error: Incompatible types in assignment (expression has type "AzGenericUpdateOperationGenerator", variable has type "AzHttpOperationGenerator") [assignment] +src/aaz_dev/cli/controller/az_command_generator.py:0: error: Unsupported operand types for + ("None" and "int") [operator] +src/aaz_dev/cli/controller/az_command_generator.py:0: note: Left operand is of type "int | None" +src/aaz_dev/cli/controller/az_command_generator.py:0: error: Call to untyped function "AzLifeCycleInstanceUpdateCallbackGenerator" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_command_generator.py:0: error: "AzHttpOperationGenerator" has no attribute "variant_key" [attr-defined] +src/aaz_dev/cli/controller/az_command_generator.py:0: error: "AzHttpOperationGenerator" has no attribute "is_selector_variant" [attr-defined] +src/aaz_dev/cli/controller/az_command_generator.py:0: error: List item 1 has incompatible type "AzLifeCycleInstanceUpdateCallbackGenerator"; expected "AzHttpOperationGenerator" [list-item] +src/aaz_dev/cli/controller/az_command_generator.py:0: error: Call to untyped function "AzLifeCycleInstanceUpdateCallbackGenerator" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_command_generator.py:0: error: "AzHttpOperationGenerator" has no attribute "variant_key" [attr-defined] +src/aaz_dev/cli/controller/az_command_generator.py:0: error: "AzHttpOperationGenerator" has no attribute "is_selector_variant" [attr-defined] +src/aaz_dev/cli/controller/az_command_generator.py:0: error: Invalid index type "int | None" for "list[AzHttpOperationGenerator]"; expected type "SupportsIndex" [index] +src/aaz_dev/cli/controller/az_command_generator.py:0: error: List item 1 has incompatible type "AzLifeCycleInstanceUpdateCallbackGenerator"; expected "AzHttpOperationGenerator" [list-item] +src/aaz_dev/cli/controller/az_command_generator.py:0: error: Call to untyped function "AzLifeCycleInstanceUpdateCallbackGenerator" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_command_generator.py:0: error: "AzHttpOperationGenerator" has no attribute "variant_key" [attr-defined] +src/aaz_dev/cli/controller/az_command_generator.py:0: error: "AzHttpOperationGenerator" has no attribute "is_selector_variant" [attr-defined] +src/aaz_dev/cli/controller/az_command_generator.py:0: error: List item 1 has incompatible type "AzLifeCycleInstanceUpdateCallbackGenerator"; expected "AzHttpOperationGenerator" [list-item] +src/aaz_dev/cli/controller/az_command_generator.py:0: error: Call to untyped function "AzLifeCycleCallbackGenerator" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_command_generator.py:0: error: Incompatible types in assignment (expression has type "AzLifeCycleCallbackGenerator", variable has type "AzLifeCycleInstanceUpdateCallbackGenerator") [assignment] +src/aaz_dev/cli/controller/az_command_generator.py:0: error: List item 1 has incompatible type "AzLifeCycleInstanceUpdateCallbackGenerator"; expected "AzHttpOperationGenerator" [list-item] +src/aaz_dev/cli/controller/az_command_generator.py:0: error: Call to untyped function "AzLifeCycleCallbackGenerator" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_command_generator.py:0: error: Incompatible types in assignment (expression has type "AzLifeCycleCallbackGenerator", variable has type "AzLifeCycleInstanceUpdateCallbackGenerator") [assignment] +src/aaz_dev/cli/controller/az_command_generator.py:0: error: List item 1 has incompatible type "AzLifeCycleInstanceUpdateCallbackGenerator"; expected "AzHttpOperationGenerator" [list-item] +src/aaz_dev/cli/controller/az_command_generator.py:0: error: Call to untyped function "AzLifeCycleCallbackGenerator" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_command_generator.py:0: error: Incompatible types in assignment (expression has type "AzLifeCycleCallbackGenerator", variable has type "AzLifeCycleInstanceUpdateCallbackGenerator") [assignment] +src/aaz_dev/cli/controller/az_command_generator.py:0: error: List item 1 has incompatible type "AzLifeCycleInstanceUpdateCallbackGenerator"; expected "AzHttpOperationGenerator" [list-item] +src/aaz_dev/cli/controller/az_command_generator.py:0: error: Call to untyped function "AzOutputGenerator" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_command_generator.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_command_generator.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_command_generator.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_command_generator.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_command_generator.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_command_generator.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_command_generator.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_command_generator.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_command_generator.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_command_generator.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_command_generator.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_command_generator.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_command_generator.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_command_generator.py:0: error: Call to untyped function "_render_operator" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_command_generator.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_command_generator.py:0: error: Call to untyped function "_render_operator" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_command_generator.py:0: error: Call to untyped function "_render_operator" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_command_generator.py:0: error: Call to untyped function "_render_operator" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_command_generator.py:0: error: Call to untyped function "get_argument" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_command_generator.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/specs/_resource_provider.py:0: error: Library stubs not installed for "yaml" [import-untyped] +src/aaz_dev/swagger/model/specs/_resource_provider.py:0: note: Hint: "python3 -m pip install types-PyYAML" +src/aaz_dev/swagger/model/specs/_resource_provider.py:0: note: (or run "mypy --install-types" to install all missing stub packages) +src/aaz_dev/swagger/model/specs/_resource_provider.py:0: note: See https://mypy.readthedocs.io/en/stable/running_mypy.html#missing-imports +src/aaz_dev/swagger/model/specs/_resource_provider.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/specs/_resource_provider.py:0: error: Call to untyped function "map_path_2_repo" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/specs/_resource_provider.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/specs/_resource_provider.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/specs/_resource_provider.py:0: error: Need type annotation for "resource_map" (hint: "resource_map: dict[, ] = ...") [var-annotated] +src/aaz_dev/swagger/model/specs/_resource_provider.py:0: error: Call to untyped function "_parse_resources_in_file" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/specs/_resource_provider.py:0: error: Call to untyped function "_replace_current_resource" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/specs/_resource_provider.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/specs/_resource_provider.py:0: error: Need type annotation for "resource_map" (hint: "resource_map: dict[, ] = ...") [var-annotated] +src/aaz_dev/swagger/model/specs/_resource_provider.py:0: error: Call to untyped function "_parse_resources_in_file" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/specs/_resource_provider.py:0: error: Call to untyped function "_replace_current_resource" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/specs/_resource_provider.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/specs/_resource_provider.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/swagger/model/specs/_resource_provider.py:0: error: Call to untyped function "_parse_readme_input_file_tags" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/specs/_resource_provider.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/swagger/model/specs/_resource_provider.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/swagger/model/specs/_resource_provider.py:0: error: Need type annotation for "tags" (hint: "tags: dict[, ] = ...") [var-annotated] +src/aaz_dev/swagger/model/specs/_resource_provider.py:0: error: Call to untyped function "OpenAPIResourceProviderTag" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/specs/_resource_provider.py:0: error: Incompatible types in assignment (expression has type "list[tuple[OpenAPIResourceProviderTag, Any]]", variable has type "dict[OpenAPIResourceProviderTag, Any]") [assignment] +src/aaz_dev/swagger/model/specs/_resource_provider.py:0: error: "dict[OpenAPIResourceProviderTag, Any]" has no attribute "sort" [attr-defined] +src/aaz_dev/swagger/model/specs/_resource_provider.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/specs/_resource_provider.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/specs/_resource_provider.py:0: error: Call to untyped function "map_path_2_repo" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/specs/_resource_provider.py:0: error: Call to untyped function "_fetch_latest_tag" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/specs/_resource_provider.py:0: error: Call to untyped function "_fetch_latest_tag" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/specs/_resource_provider.py:0: error: Call to untyped function "map_path_2_repo" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/specs/_resource_provider.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/specs/_resource_provider.py:0: error: Need type annotation for "resources" (hint: "resources: list[] = ...") [var-annotated] +src/aaz_dev/swagger/model/specs/_resource_provider.py:0: error: Call to untyped function "Resource" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/specs/_resource_provider.py:0: error: Call to untyped function "Resource" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/specs/_resource_provider.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/specs/_resource_provider.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/specs/_resource_provider.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/swagger/model/specs/_resource_provider.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/specs/_resource_provider.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/specs/_resource_provider.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/specs/_resource_provider.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/schema/cmd_builder.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/schema/cmd_builder.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/schema/cmd_builder.py:0: error: Call to untyped function "CMDBuilder" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/schema/cmd_builder.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/schema/cmd_builder.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/schema/cmd_builder.py:0: error: Call to untyped function "build_schema" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/schema/cmd_builder.py:0: error: Call to untyped function "build_schema" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/schema/cmd_builder.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/schema/cmd_builder.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/schema/cmd_builder.py:0: error: Call to untyped function "_get_cls_definition_name" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/schema/cmd_builder.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/schema/cmd_builder.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/swagger/model/schema/cmd_builder.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/schema/cmd_builder.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/schema/cmd_builder.py:0: error: Call to untyped function "build_cmd_datetime_format" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/schema/cmd_builder.py:0: error: Call to untyped function "build_cmd_string_format" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/schema/cmd_builder.py:0: error: Call to untyped function "build_cmd_integer_format" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/schema/cmd_builder.py:0: error: Call to untyped function "build_cmd_float_format" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/schema/cmd_builder.py:0: error: Call to untyped function "build_cmd_array_format" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/schema/cmd_builder.py:0: error: Call to untyped function "build_cmd_object_format" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/schema/cmd_builder.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/schema/cmd_builder.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/schema/cmd_builder.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/schema/cmd_builder.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/schema/cmd_builder.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/schema/cmd_builder.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/schema/cmd_builder.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/schema/cmd_builder.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/schema/cmd_builder.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/schema/cmd_builder.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/schema/cmd_builder.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/schema/cmd_builder.py:0: error: Need type annotation for "success_responses" (hint: "success_responses: list[] = ...") [var-annotated] +src/aaz_dev/swagger/model/schema/cmd_builder.py:0: error: Need type annotation for "redirect_responses" (hint: "redirect_responses: list[] = ...") [var-annotated] +src/aaz_dev/swagger/model/schema/cmd_builder.py:0: error: Incompatible types in assignment (expression has type "None", variable has type "set[int]") [assignment] +src/aaz_dev/swagger/model/schema/cmd_builder.py:0: error: Argument 1 to "append" of "list" has incompatible type "tuple[set[int], Any]"; expected "tuple[None, Any]" [arg-type] +src/aaz_dev/swagger/model/schema/cmd_builder.py:0: error: Need type annotation for "success_codes" (hint: "success_codes: set[] = ...") [var-annotated] +src/aaz_dev/swagger/model/schema/cmd_builder.py:0: error: Argument 1 to "reduce" has incompatible type "Callable[[set[Never], set[int]], set[int]]"; expected "Callable[[set[Never], set[int]], set[Never]]" [arg-type] +src/aaz_dev/swagger/model/schema/cmd_builder.py:0: error: Incompatible return value type (got "set[int]", expected "set[Never]") [return-value] +src/aaz_dev/swagger/model/schema/cmd_builder.py:0: error: Call to untyped function "Response" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/schema/cmd_builder.py:0: error: Call to untyped function "Response" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/schema/cmd_builder.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/schema/cmd_builder.py:0: error: Need type annotation for "schema_cls_register_map" (hint: "schema_cls_register_map: dict[, ] = ...") [var-annotated] +src/aaz_dev/swagger/model/schema/cmd_builder.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/schema/x_ms_parameterized_host.py:0: error: Class cannot subclass "Model" (has type "Any") [misc] +src/aaz_dev/swagger/model/schema/x_ms_parameterized_host.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/schema/x_ms_parameterized_host.py:0: error: Call to untyped function "is_linked" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/schema/x_ms_parameterized_host.py:0: error: Call to untyped function "link" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/schema/x_ms_parameterized_host.py:0: error: Call to untyped function "link" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/schema/x_ms_parameterized_host.py:0: error: Expected iterable as variadic argument [misc] +src/aaz_dev/swagger/model/schema/x_ms_parameterized_host.py:0: error: Class cannot subclass "ModelType" (has type "Any") [misc] +src/aaz_dev/swagger/model/schema/x_ms_parameterized_host.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/schema/operation.py:0: error: Class cannot subclass "Model" (has type "Any") [misc] +src/aaz_dev/swagger/model/schema/operation.py:0: error: Call to untyped function "SecurityRequirementField" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/schema/operation.py:0: error: Call to untyped function "XmsPageableField" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/schema/operation.py:0: error: Call to untyped function "XmsLongRunningOperationField" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/schema/operation.py:0: error: Call to untyped function "XmsLongRunningOperationOptionsField" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/schema/operation.py:0: error: Call to untyped function "XmsODataField" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/schema/operation.py:0: error: Call to untyped function "XmsRequestIdField" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/schema/operation.py:0: error: Call to untyped function "XmsExamplesField" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/schema/operation.py:0: error: Call to untyped function "XPublishField" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/schema/operation.py:0: error: Call to untyped function "XSfCodeGenField" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/schema/operation.py:0: error: Call to untyped function "XmsClientNameField" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/schema/operation.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/schema/operation.py:0: error: Call to untyped function "__init__" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/schema/operation.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/schema/operation.py:0: error: Call to untyped function "is_linked" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/schema/operation.py:0: error: Call to untyped function "link" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/schema/operation.py:0: error: Call to untyped function "link" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/schema/operation.py:0: error: Expected iterable as variadic argument [misc] +src/aaz_dev/swagger/model/schema/operation.py:0: error: Value of type "Any | None" is not indexable [index] +src/aaz_dev/swagger/model/schema/operation.py:0: error: Value of type "Any | None" is not indexable [index] +src/aaz_dev/swagger/model/schema/operation.py:0: error: Call to untyped function "link" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/schema/operation.py:0: error: Call to untyped function "ReferenceSchema" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/schema/operation.py:0: error: Call to untyped function "link" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/schema/operation.py:0: error: Expected iterable as variadic argument [misc] +src/aaz_dev/swagger/model/schema/operation.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/schema/operation.py:0: error: Need type annotation for "param_models" (hint: "param_models: dict[, ] = ...") [var-annotated] +src/aaz_dev/command/model/configuration/_arg.py:0: error: Class cannot subclass "Model" (has type "Any") [misc] +src/aaz_dev/command/model/configuration/_arg.py:0: error: Call to untyped function "CMDBooleanField" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_arg.py:0: error: Call to untyped function "CMDPrimitiveField" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_arg.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_arg.py:0: error: Incompatible types in assignment (expression has type "Any | None", variable has type "CMDBooleanField") [assignment] +src/aaz_dev/command/model/configuration/_arg.py:0: error: Class cannot subclass "Model" (has type "Any") [misc] +src/aaz_dev/command/model/configuration/_arg.py:0: error: Call to untyped function "CMDBooleanField" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_arg.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_arg.py:0: error: Call to untyped function "build_enum_item" of "CMDArgEnumItem" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_arg.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_arg.py:0: error: Class cannot subclass "Model" (has type "Any") [misc] +src/aaz_dev/command/model/configuration/_arg.py:0: error: Call to untyped function "CMDPrimitiveField" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_arg.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_arg.py:0: error: Class cannot subclass "Model" (has type "Any") [misc] +src/aaz_dev/command/model/configuration/_arg.py:0: error: Call to untyped function "CMDPrimitiveField" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_arg.py:0: error: Class cannot subclass "Model" (has type "Any") [misc] +src/aaz_dev/command/model/configuration/_arg.py:0: error: Call to untyped function "CMDBooleanField" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_arg.py:0: error: Class cannot subclass "Model" (has type "Any") [misc] +src/aaz_dev/command/model/configuration/_arg.py:0: error: Call to untyped function "CMDBooleanField" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_arg.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_arg.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_arg.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_arg.py:0: error: Call to untyped function "_reformat_base" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_arg.py:0: error: Class cannot subclass "PolyModelType" (has type "Any") [misc] +src/aaz_dev/command/model/configuration/_arg.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_arg.py:0: error: Call to untyped function "CMDVariantField" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_arg.py:0: error: Call to untyped function "CMDBooleanField" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_arg.py:0: error: Call to untyped function "CMDBooleanField" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_arg.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_arg.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_arg.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_arg.py:0: error: Call to untyped function "_reformat_base" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_arg.py:0: error: Call to untyped function "_reformat" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_arg.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_arg.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_arg.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_arg.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_arg.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_arg.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_arg.py:0: error: Call to untyped function "_reformat" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_arg.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_arg.py:0: error: Call to untyped function "get_unwrapped" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_arg.py:0: error: Incompatible types in assignment (expression has type "str", base class "CMDArgBase" defined the type as "None") [assignment] +src/aaz_dev/command/model/configuration/_arg.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_arg.py:0: error: Call to untyped function "_reformat_base" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_arg.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_arg.py:0: error: Call to untyped function "_reformat" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_arg.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_arg.py:0: error: Call to untyped function "CMDBooleanField" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_arg.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_arg.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_arg.py:0: error: Incompatible types in assignment (expression has type "str", base class "CMDArgBase" defined the type as "None") [assignment] +src/aaz_dev/command/model/configuration/_arg.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_arg.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_arg.py:0: error: Call to untyped function "_reformat_base" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_arg.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_arg.py:0: error: Call to untyped function "_reformat" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_arg.py:0: error: Incompatible types in assignment (expression has type "str", base class "CMDArgBase" defined the type as "None") [assignment] +src/aaz_dev/command/model/configuration/_arg.py:0: error: Call to untyped function "CMDBooleanField" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_arg.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_arg.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_arg.py:0: error: Call to untyped function "_reformat" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_arg.py:0: error: Incompatible types in assignment (expression has type "str", base class "CMDArgBase" defined the type as "None") [assignment] +src/aaz_dev/command/model/configuration/_arg.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_arg.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_arg.py:0: error: Call to untyped function "_reformat_base" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_arg.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_arg.py:0: error: Call to untyped function "_reformat" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_arg.py:0: error: Incompatible types in assignment (expression has type "str", base class "CMDArgBase" defined the type as "None") [assignment] +src/aaz_dev/command/model/configuration/_arg.py:0: error: Class cannot subclass "Model" (has type "Any") [misc] +src/aaz_dev/command/model/configuration/_arg.py:0: error: Call to untyped function "CMDArgBaseField" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_arg.py:0: error: Call to untyped function "CMDBooleanField" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_arg.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_arg.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_arg.py:0: error: Incompatible types in assignment (expression has type "None", variable has type "CMDBooleanField") [assignment] +src/aaz_dev/command/model/configuration/_arg.py:0: error: Incompatible types in assignment (expression has type "str", base class "CMDArgBase" defined the type as "None") [assignment] +src/aaz_dev/command/model/configuration/_arg.py:0: error: Call to untyped function "CMDClassField" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_arg.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_arg.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_arg.py:0: error: Call to untyped function "_reformat_base" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_arg.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_arg.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_arg.py:0: error: Call to untyped function "_reformat" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_arg.py:0: error: Incompatible types in assignment (expression has type "str", base class "CMDArgBase" defined the type as "None") [assignment] +src/aaz_dev/command/model/configuration/_arg.py:0: error: Call to untyped function "CMDArgBaseField" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_arg.py:0: error: Call to untyped function "CMDClassField" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_arg.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_arg.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_arg.py:0: error: Call to untyped function "_reformat_base" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_arg.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_arg.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_arg.py:0: error: Call to untyped function "_reformat" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_client_generator.py:0: error: Bracketed expression "[...]" is not valid as a type [valid-type] +src/aaz_dev/cli/controller/az_client_generator.py:0: note: Did you mean "List[...]"? +src/aaz_dev/cli/controller/az_client_generator.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_client_generator.py:0: error: Call to untyped function "AzClientGenerator" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_client_generator.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_client_generator.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_client_generator.py:0: error: Call to untyped function "AzCommandCtx" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_client_generator.py:0: error: Call to untyped function "AzArgGroupGenerator" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_client_generator.py:0: error: Call to untyped function "AzClientEndpointsByTemplateGenerator" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_client_generator.py:0: error: Call to untyped function "AzClientEndpointsByHttpOperationGenerator" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_client_generator.py:0: error: Incompatible types in assignment (expression has type "AzClientEndpointsByHttpOperationGenerator", variable has type "AzClientEndpointsByTemplateGenerator") [assignment] +src/aaz_dev/cli/controller/az_client_generator.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_client_generator.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_client_generator.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_client_generator.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_client_generator.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_client_generator.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_client_generator.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_client_generator.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_client_generator.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_client_generator.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_client_generator.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_client_generator.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_client_generator.py:0: error: Call to untyped function "AzJsonSelectorGenerator" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_client_generator.py:0: error: Call to untyped function "AzHttpOperationGenerator" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_client_generator.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/swagger/model/specs/_swagger_module.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/specs/_swagger_module.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/specs/_swagger_module.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/specs/_swagger_module.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/specs/_swagger_module.py:0: error: Call to untyped function "__eq__" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/specs/_swagger_module.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/swagger/model/specs/_swagger_module.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/swagger/model/specs/_swagger_module.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/specs/_swagger_module.py:0: error: Call to untyped function "__str__" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/specs/_swagger_module.py:0: error: Call to untyped function "__str__" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/specs/_swagger_module.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/swagger/model/specs/_swagger_module.py:0: error: Call to untyped function "_get_openapi_resource_providers" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/specs/_swagger_module.py:0: error: Call to untyped function "_get_typespec_resource_providers" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/specs/_swagger_module.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/swagger/model/specs/_swagger_module.py:0: error: Need type annotation for "rp" (hint: "rp: list[] = ...") [var-annotated] +src/aaz_dev/swagger/model/specs/_swagger_module.py:0: error: Call to untyped function "_search_readme_md_paths" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/specs/_swagger_module.py:0: error: Call to untyped function "OpenAPIResourceProvider" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/specs/_swagger_module.py:0: error: Call to untyped function "MgmtPlaneModule" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/specs/_swagger_module.py:0: error: Call to untyped function "get_resource_providers" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/specs/_swagger_module.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/swagger/model/specs/_swagger_module.py:0: error: Need type annotation for "rp" (hint: "rp: dict[, ] = ...") [var-annotated] +src/aaz_dev/swagger/model/specs/_swagger_module.py:0: error: Call to untyped function "find_mgmt_plane_entry_files" of "TypeSpecHelper" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/specs/_swagger_module.py:0: error: Call to untyped function "TypeSpecResourceProvider" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/specs/_swagger_module.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/specs/_swagger_module.py:0: error: Call to untyped function "__str__" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/specs/_swagger_module.py:0: error: Call to untyped function "__str__" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/specs/_swagger_module.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/swagger/model/specs/_swagger_module.py:0: error: Call to untyped function "_get_openapi_resource_providers" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/specs/_swagger_module.py:0: error: Call to untyped function "_get_typespec_resource_providers" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/specs/_swagger_module.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/swagger/model/specs/_swagger_module.py:0: error: Need type annotation for "rp" (hint: "rp: list[] = ...") [var-annotated] +src/aaz_dev/swagger/model/specs/_swagger_module.py:0: error: Call to untyped function "_search_readme_md_paths" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/specs/_swagger_module.py:0: error: Call to untyped function "OpenAPIResourceProvider" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/specs/_swagger_module.py:0: error: Call to untyped function "DataPlaneModule" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/specs/_swagger_module.py:0: error: Call to untyped function "get_resource_providers" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/specs/_swagger_module.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/swagger/model/specs/_swagger_module.py:0: error: Need type annotation for "rp" (hint: "rp: dict[, ] = ...") [var-annotated] +src/aaz_dev/swagger/model/specs/_swagger_module.py:0: error: Call to untyped function "find_data_plane_entry_files" of "TypeSpecHelper" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/specs/_swagger_module.py:0: error: Call to untyped function "TypeSpecResourceProvider" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/specs/_swagger_module.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/schema/path_item.py:0: error: Class cannot subclass "Model" (has type "Any") [misc] +src/aaz_dev/swagger/model/schema/path_item.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/schema/path_item.py:0: error: Call to untyped function "is_linked" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/schema/path_item.py:0: error: Call to untyped function "link" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/schema/path_item.py:0: error: Call to untyped function "link" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/schema/path_item.py:0: error: Expected iterable as variadic argument [misc] +src/aaz_dev/swagger/model/schema/path_item.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/schema/path_item.py:0: error: Class cannot subclass "DictType" (has type "Any") [misc] +src/aaz_dev/swagger/model/schema/path_item.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/schema/path_item.py:0: error: Class cannot subclass "DictType" (has type "Any") [misc] +src/aaz_dev/swagger/model/schema/path_item.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Module "aaz_dev.command.model.configuration._fields" does not explicitly export attribute "StringType" [attr-defined] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Class cannot subclass "Model" (has type "Any") [misc] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Call to untyped function "CMDVariantField" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Call to untyped function "CMDPrimitiveField" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Class cannot subclass "Model" (has type "Any") [misc] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Class cannot subclass "Model" (has type "Any") [misc] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Call to untyped function "CMDPrimitiveField" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Class cannot subclass "Model" (has type "Any") [misc] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Call to untyped function "CMDBooleanField" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Call to untyped function "CMDBooleanField" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Call to untyped function "CMDBooleanField" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Call to untyped function "CMDBooleanField" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Call to untyped function "_get_type" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Need type annotation for "diff" (hint: "diff: dict[, ] = ...") [var-annotated] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Call to untyped function "_diff_base" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Call to untyped function "_reformat_base" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Class cannot subclass "PolyModelType" (has type "Any") [misc] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Call to untyped function "CMDVariantField" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Call to untyped function "CMDBooleanField" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Call to untyped function "CMDDescriptionField" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Call to untyped function "CMDBooleanField" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Call to untyped function "CMDBooleanField" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Need type annotation for "diff" (hint: "diff: dict[, ] = ...") [var-annotated] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Call to untyped function "_diff_base" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Call to untyped function "_diff" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Call to untyped function "_reformat_base" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Call to untyped function "_reformat" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Class cannot subclass "PolyModelType" (has type "Any") [misc] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Incompatible types in assignment (expression has type "type[CMDClsArgBase]", base class "CMDSchemaBase" defined the type as "None") [assignment] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Returning Any from function declared to return "str" [no-any-return] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Incompatible types in assignment (expression has type "type[CMDClsArg]", base class "CMDSchemaBase" defined the type as "None") [assignment] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Call to untyped function "CMDBooleanField" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Call to untyped function "_diff" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Call to untyped function "build_from_schema_base" of "CMDClsSchemaBase" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Call to untyped function "get_unwrapped" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Incompatible types in assignment (expression has type "str", base class "CMDSchemaBase" defined the type as "None") [assignment] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Incompatible types in assignment (expression has type "type[CMDStringArgBase]", base class "CMDSchemaBase" defined the type as "None") [assignment] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Call to untyped function "_diff_base" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Call to untyped function "_diff_fmt" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Call to untyped function "_diff_enum" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Call to untyped function "_reformat_base" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Incompatible types in assignment (expression has type "type[CMDStringArg]", base class "CMDSchemaBase" defined the type as "None") [assignment] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Incompatible types in assignment (expression has type "str", base class "CMDSchemaBase" defined the type as "None") [assignment] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Incompatible types in assignment (expression has type "type[CMDIntegerArgBase]", base class "CMDSchemaBase" defined the type as "None") [assignment] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Call to untyped function "_diff_base" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Call to untyped function "_diff_fmt" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Call to untyped function "_diff_enum" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Call to untyped function "_reformat_base" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Incompatible types in assignment (expression has type "type[CMDIntegerArg]", base class "CMDSchemaBase" defined the type as "None") [assignment] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Incompatible types in assignment (expression has type "str", base class "CMDSchemaBase" defined the type as "None") [assignment] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Incompatible types in assignment (expression has type "type[CMDBooleanArgBase]", base class "CMDSchemaBase" defined the type as "None") [assignment] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Incompatible types in assignment (expression has type "type[CMDBooleanArg]", base class "CMDSchemaBase" defined the type as "None") [assignment] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Incompatible types in assignment (expression has type "str", base class "CMDSchemaBase" defined the type as "None") [assignment] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Incompatible types in assignment (expression has type "type[CMDFloatArgBase]", base class "CMDSchemaBase" defined the type as "None") [assignment] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Call to untyped function "_diff_base" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Call to untyped function "_diff_fmt" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Call to untyped function "_diff_enum" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Call to untyped function "_reformat_base" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Incompatible types in assignment (expression has type "type[CMDFloatArg]", base class "CMDSchemaBase" defined the type as "None") [assignment] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Incompatible types in assignment (expression has type "str", base class "CMDSchemaBase" defined the type as "None") [assignment] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Incompatible types in assignment (expression has type "type[CMDAnyTypeArgBase]", base class "CMDSchemaBase" defined the type as "None") [assignment] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Incompatible types in assignment (expression has type "type[CMDAnyTypeArg]", base class "CMDSchemaBase" defined the type as "None") [assignment] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Class cannot subclass "ModelType" (has type "Any") [misc] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Class cannot subclass "Model" (has type "Any") [misc] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Call to untyped function "CMDBooleanField" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Call to untyped function "CMDSchemaField" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Call to untyped function "_diff_props" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Call to untyped function "_diff_discriminators" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Class cannot subclass "Model" (has type "Any") [misc] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Call to untyped function "CMDBooleanField" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Call to untyped function "CMDBooleanField" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Call to untyped function "CMDSchemaBaseField" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Call to untyped function "CMDBooleanField" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Call to untyped function "_diff_item" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Incompatible types in assignment (expression has type "None", variable has type "CMDBooleanField") [assignment] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Class cannot subclass "ModelType" (has type "Any") [misc] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Incompatible types in assignment (expression has type "str", base class "CMDSchemaBase" defined the type as "None") [assignment] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Incompatible types in assignment (expression has type "type[CMDObjectArgBase]", base class "CMDSchemaBase" defined the type as "None") [assignment] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Call to untyped function "CMDSchemaField" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Call to untyped function "CMDClassField" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Call to untyped function "_diff_base" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Call to untyped function "_diff_fmt" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Call to untyped function "_diff_props" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Call to untyped function "_diff_discriminators" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Call to untyped function "_reformat_base" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Incompatible types in assignment (expression has type "type[CMDObjectArg]", base class "CMDSchemaBase" defined the type as "None") [assignment] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Call to untyped function "CMDBooleanField" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Call to untyped function "_diff" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Call to untyped function "_diff_cls" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Call to untyped function "CMDSchemaField" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Call to untyped function "CMDSchemaField" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Incompatible types in assignment (expression has type "str", base class "CMDSchemaBase" defined the type as "None") [assignment] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Incompatible types in assignment (expression has type "type[CMDArrayArgBase]", base class "CMDSchemaBase" defined the type as "None") [assignment] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Call to untyped function "CMDSchemaBaseField" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Call to untyped function "CMDClassField" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Call to untyped function "_diff_base" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Call to untyped function "_diff_fmt" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Call to untyped function "_diff_item" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Call to untyped function "_reformat_base" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Incompatible types in assignment (expression has type "None", variable has type "CMDSchemaBaseField") [assignment] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Incompatible types in assignment (expression has type "type[CMDArrayArg]", base class "CMDSchemaBase" defined the type as "None") [assignment] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Call to untyped function "_diff" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Call to untyped function "_diff_cls" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Need type annotation for "item_diff" (hint: "item_diff: dict[, ] = ...") [var-annotated] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Incompatible types in assignment (expression has type "str", variable has type "dict[Any, Any]") [assignment] +src/aaz_dev/command/model/configuration/_schema.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_arg_group.py:0: error: Class cannot subclass "Model" (has type "Any") [misc] +src/aaz_dev/command/model/configuration/_arg_group.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_arg_group.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_arg_group.py:0: error: Call to untyped function "_iter_over_arg_for_cls_register" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_arg_group.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_arg_group.py:0: error: Call to untyped function "_iter_over_arg_for_cls_register" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_arg_group.py:0: error: Call to untyped function "_iter_over_arg_for_cls_register" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_arg_group.py:0: error: Call to untyped function "_iter_over_arg_for_cls_register" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_profile_generator.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_profile_generator.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_profile_generator.py:0: error: Call to untyped function "_exist_file" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_profile_generator.py:0: error: Call to untyped function "_update_file" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_profile_generator.py:0: error: Call to untyped function "_delete_folder" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_profile_generator.py:0: error: Call to untyped function "_generate_by_clients" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_profile_generator.py:0: error: Call to untyped function "_update_file" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_profile_generator.py:0: error: Call to untyped function "_list_package" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_profile_generator.py:0: error: Call to untyped function "_generate_by_command_group" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_profile_generator.py:0: error: Call to untyped function "_delete_folder" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_profile_generator.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_profile_generator.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/cli/controller/az_profile_generator.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_profile_generator.py:0: error: Call to untyped function "_command_group_folder_names" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_profile_generator.py:0: error: Call to untyped function "_list_package" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_profile_generator.py:0: error: Call to untyped function "_generate_by_command_group" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_profile_generator.py:0: error: Call to untyped function "_delete_folder" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_profile_generator.py:0: error: Call to untyped function "_command_file_name" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_profile_generator.py:0: error: Call to untyped function "_generate_by_command" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_profile_generator.py:0: error: Call to untyped function "_generate_by_command" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_profile_generator.py:0: error: Call to untyped function "_command_file_name" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_profile_generator.py:0: error: Call to untyped function "_generate_by_command" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_profile_generator.py:0: error: Call to untyped function "_update_file" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_profile_generator.py:0: error: Call to untyped function "_update_file" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_profile_generator.py:0: error: Call to untyped function "_delete_file" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_profile_generator.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_profile_generator.py:0: error: Call to untyped function "_command_file_name" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_profile_generator.py:0: error: Call to untyped function "_update_file" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_profile_generator.py:0: error: Call to untyped function "_command_group_folder_names" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_profile_generator.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_profile_generator.py:0: error: Call to untyped function "is_empty" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_profile_generator.py:0: error: Call to untyped function "_delete_file" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_profile_generator.py:0: error: Call to untyped function "_update_file" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_profile_generator.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_profile_generator.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_profile_generator.py:0: error: Call to untyped function "_get_path" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_profile_generator.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_profile_generator.py:0: error: Call to untyped function "_get_path" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_profile_generator.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_profile_generator.py:0: error: Call to untyped function "_get_path" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_profile_generator.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_profile_generator.py:0: error: Call to untyped function "_get_path" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_profile_generator.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_profile_generator.py:0: error: Call to untyped function "_get_path" in typed context [no-untyped-call] +src/aaz_dev/cli/controller/az_profile_generator.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/controller/az_profile_generator.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/specs/_swagger_specs.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/specs/_swagger_specs.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/swagger/model/specs/_swagger_specs.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/specs/_swagger_specs.py:0: error: Call to untyped function "get_mgmt_plane_module" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/specs/_swagger_specs.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/specs/_swagger_specs.py:0: error: Call to untyped function "find_mgmt_plane_entry_files" of "TypeSpecHelper" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/specs/_swagger_specs.py:0: error: Call to untyped function "MgmtPlaneModule" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/specs/_swagger_specs.py:0: error: Call to untyped function "MgmtPlaneModule" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/specs/_swagger_specs.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/specs/_swagger_specs.py:0: error: Call to untyped function "get_data_plane_module" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/specs/_swagger_specs.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/specs/_swagger_specs.py:0: error: Call to untyped function "find_data_plane_entry_files" of "TypeSpecHelper" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/specs/_swagger_specs.py:0: error: Call to untyped function "DataPlaneModule" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/specs/_swagger_specs.py:0: error: Call to untyped function "DataPlaneModule" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/specs/_swagger_specs.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/specs/_swagger_specs.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/specs/_swagger_specs.py:0: error: Call to untyped function "find_mgmt_plane_entry_files" of "TypeSpecHelper" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/specs/_swagger_specs.py:0: error: Call to untyped function "MgmtPlaneModule" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/specs/_swagger_specs.py:0: error: Item "None" of "MgmtPlaneModule | None" has no attribute "folder_path" [union-attr] +src/aaz_dev/swagger/model/specs/_swagger_specs.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/specs/_swagger_specs.py:0: error: Call to untyped function "get_mgmt_plane_modules" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/specs/_swagger_specs.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/specs/_swagger_specs.py:0: error: Call to untyped function "find_data_plane_entry_files" of "TypeSpecHelper" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/specs/_swagger_specs.py:0: error: Call to untyped function "DataPlaneModule" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/specs/_swagger_specs.py:0: error: Item "None" of "DataPlaneModule | None" has no attribute "folder_path" [union-attr] +src/aaz_dev/swagger/model/specs/_swagger_specs.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/specs/_swagger_specs.py:0: error: Call to untyped function "get_data_plane_modules" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/schema/swagger.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/schema/swagger.py:0: error: Class cannot subclass "Model" (has type "Any") [misc] +src/aaz_dev/swagger/model/schema/swagger.py:0: error: Call to untyped function "PathsField" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/schema/swagger.py:0: error: Call to untyped function "SecuritySchemeField" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/schema/swagger.py:0: error: Call to untyped function "SecurityRequirementField" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/schema/swagger.py:0: error: Call to untyped function "XmsPathsField" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/schema/swagger.py:0: error: Call to untyped function "XmsParameterizedHostField" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/schema/swagger.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/schema/swagger.py:0: error: Call to untyped function "__init__" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/schema/swagger.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/model/schema/swagger.py:0: error: Call to untyped function "is_linked" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/schema/swagger.py:0: error: Call to untyped function "link" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/schema/swagger.py:0: error: Call to untyped function "link" in typed context [no-untyped-call] +src/aaz_dev/swagger/model/schema/swagger.py:0: error: Expected iterable as variadic argument [misc] +src/aaz_dev/command/model/configuration/_arg_builder.py:0: error: Module "aaz_dev.command.model.configuration._arg" does not explicitly export attribute "CMDArgumentHelp" [attr-defined] +src/aaz_dev/command/model/configuration/_arg_builder.py:0: error: Call to untyped function "get_safe_value" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_arg_builder.py:0: error: Incompatible types in assignment (expression has type "list[Any] | None", variable has type "list[Any]") [assignment] +src/aaz_dev/command/model/configuration/_arg_builder.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_arg_builder.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_arg_builder.py:0: error: Call to untyped function "get_cls" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_arg_builder.py:0: error: Incompatible types in assignment (expression has type "None", variable has type "CMDVariantField") [assignment] +src/aaz_dev/command/model/configuration/_arg_builder.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_arg_builder.py:0: error: Need type annotation for "discriminator_mapping" (hint: "discriminator_mapping: dict[, ] = ...") [var-annotated] +src/aaz_dev/command/model/configuration/_arg_builder.py:0: error: Call to untyped function "get_unwrapped" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_arg_builder.py:0: error: Call to untyped function "get_sub_builder" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_arg_builder.py:0: error: Call to untyped function "get_sub_builder" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_arg_builder.py:0: error: Call to untyped function "get_sub_builder" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_arg_builder.py:0: error: Call to untyped function "add_identity_args" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_arg_builder.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_arg_builder.py:0: error: Call to untyped function "get_sub_builder" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_arg_builder.py:0: error: Call to untyped function "get_sub_builder" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_arg_builder.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_arg_builder.py:0: error: Call to untyped function "get_sub_builder" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_arg_builder.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_arg_builder.py:0: error: Call to untyped function "get_sub_item" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_arg_builder.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_arg_builder.py:0: error: Call to untyped function "get_sub_builder" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_arg_builder.py:0: error: Call to untyped function "build_default" of "CMDArgDefault" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_arg_builder.py:0: error: Incompatible types in assignment (expression has type "bool", variable has type "CMDPrimitiveField") [assignment] +src/aaz_dev/command/model/configuration/_arg_builder.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_arg_builder.py:0: error: Call to untyped function "get_safe_value" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_arg_builder.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_arg_builder.py:0: error: Call to untyped function "build_arg_fmt" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_arg_builder.py:0: error: Call to untyped function "build_enum" of "CMDArgEnum" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_arg_builder.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_arg_builder.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_arg_builder.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_arg_builder.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_selector_index.py:0: error: Class cannot subclass "Model" (has type "Any") [misc] +src/aaz_dev/command/model/configuration/_selector_index.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_selector_index.py:0: error: Call to untyped function "_get_type" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_selector_index.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_selector_index.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_selector_index.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_selector_index.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_selector_index.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_selector_index.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_selector_index.py:0: error: Need type annotation for "diff" (hint: "diff: dict[, ] = ...") [var-annotated] +src/aaz_dev/command/model/configuration/_selector_index.py:0: error: Call to untyped function "_diff_base" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_selector_index.py:0: error: Class cannot subclass "PolyModelType" (has type "Any") [misc] +src/aaz_dev/command/model/configuration/_selector_index.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_selector_index.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_selector_index.py:0: error: Call to untyped function "_claim_polymorphic" of "CMDSelectorIndexBase" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_selector_index.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_selector_index.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_selector_index.py:0: error: Need type annotation for "diff" (hint: "diff: dict[, ] = ...") [var-annotated] +src/aaz_dev/command/model/configuration/_selector_index.py:0: error: Call to untyped function "_diff_base" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_selector_index.py:0: error: Call to untyped function "_diff" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_selector_index.py:0: error: Class cannot subclass "PolyModelType" (has type "Any") [misc] +src/aaz_dev/command/model/configuration/_selector_index.py:0: error: Class cannot subclass "Model" (has type "Any") [misc] +src/aaz_dev/command/model/configuration/_selector_index.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_selector_index.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_selector_index.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_selector_index.py:0: error: Class cannot subclass "Model" (has type "Any") [misc] +src/aaz_dev/command/model/configuration/_selector_index.py:0: error: Call to untyped function "CMDSchemaField" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_selector_index.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_selector_index.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_selector_index.py:0: error: Call to untyped function "_diff_identifiers" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_selector_index.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_selector_index.py:0: error: Incompatible types in assignment (expression has type "str", base class "CMDSelectorIndexBase" defined the type as "None") [assignment] +src/aaz_dev/command/model/configuration/_selector_index.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_selector_index.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_selector_index.py:0: error: Call to untyped function "_generate_args_base" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_selector_index.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_selector_index.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_selector_index.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_selector_index.py:0: error: Call to untyped function "_generate_args_base" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_selector_index.py:0: error: Incompatible types in assignment (expression has type "str", base class "CMDSelectorIndexBase" defined the type as "None") [assignment] +src/aaz_dev/command/model/configuration/_selector_index.py:0: error: Call to untyped function "CMDSchemaField" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_selector_index.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_selector_index.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_selector_index.py:0: error: Call to untyped function "_generate_args_base" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_selector_index.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_selector_index.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_selector_index.py:0: error: Call to untyped function "_diff_identifiers" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_selector_index.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_selector_index.py:0: error: Call to untyped function "_generate_args_base" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_selector_index.py:0: error: Incompatible types in assignment (expression has type "str", base class "CMDSelectorIndexBase" defined the type as "None") [assignment] +src/aaz_dev/command/model/configuration/_selector_index.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_selector_index.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_selector_index.py:0: error: Call to untyped function "_generate_args_base" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_selector_index.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_selector_index.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_selector_index.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_content.py:0: error: Class cannot subclass "Model" (has type "Any") [misc] +src/aaz_dev/command/model/configuration/_content.py:0: error: Call to untyped function "CMDVariantField" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_content.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_content.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_content.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_content.py:0: error: Call to untyped function "build_from_schema" of "CMDClsSchema" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_content.py:0: error: Call to untyped function "_iter_over_schema" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_content.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_content.py:0: error: Call to untyped function "_iter_over_schema_for_cls_register" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_content.py:0: error: Class cannot subclass "Model" (has type "Any") [misc] +src/aaz_dev/command/model/configuration/_content.py:0: error: Call to untyped function "CMDVariantField" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_content.py:0: error: Call to untyped function "CMDSchemaBaseField" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_content.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_content.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_content.py:0: error: Call to untyped function "build_from_schema_base" of "CMDClsSchemaBase" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_content.py:0: error: Call to untyped function "_iter_over_schema" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_content.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_content.py:0: error: Call to untyped function "_iter_over_schema_for_cls_register" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_content.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_content.py:0: error: Call to untyped function "build_from_schema" of "CMDClsSchema" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_content.py:0: error: Call to untyped function "_iter_over_schema" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_content.py:0: error: Call to untyped function "_iter_over_schema" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_content.py:0: error: Call to untyped function "build_from_schema_base" of "CMDClsSchemaBase" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_content.py:0: error: Call to untyped function "_iter_over_schema" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_content.py:0: error: Call to untyped function "build_from_schema_base" of "CMDClsSchemaBase" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_content.py:0: error: Call to untyped function "_iter_over_schema" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_content.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_content.py:0: error: Call to untyped function "_iter_over_schema_for_cls_register" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_content.py:0: error: Call to untyped function "_iter_over_schema_for_cls_register" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_content.py:0: error: Call to untyped function "_iter_over_schema_for_cls_register" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_content.py:0: error: Call to untyped function "_iter_over_schema_for_cls_register" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_subresource_selector.py:0: error: Class cannot subclass "Model" (has type "Any") [misc] +src/aaz_dev/command/model/configuration/_subresource_selector.py:0: error: Call to untyped function "CMDVariantField" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_subresource_selector.py:0: error: Call to untyped function "CMDVariantField" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_subresource_selector.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_subresource_selector.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_subresource_selector.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_subresource_selector.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_subresource_selector.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_subresource_selector.py:0: error: Need type annotation for "diff" (hint: "diff: dict[, ] = ...") [var-annotated] +src/aaz_dev/command/model/configuration/_subresource_selector.py:0: error: Call to untyped function "_diff" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_subresource_selector.py:0: error: Incompatible types in assignment (expression has type "str", base class "CMDSubresourceSelector" defined the type as "None") [assignment] +src/aaz_dev/command/model/configuration/_subresource_selector.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_subresource_selector.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_subresource_selector.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_instance_update.py:0: error: Class cannot subclass "Model" (has type "Any") [misc] +src/aaz_dev/command/model/configuration/_instance_update.py:0: error: Call to untyped function "CMDVariantField" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_instance_update.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_instance_update.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_instance_update.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_instance_update.py:0: error: Incompatible types in assignment (expression has type "str", base class "CMDInstanceUpdateAction" defined the type as "None") [assignment] +src/aaz_dev/command/model/configuration/_instance_update.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_instance_update.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_instance_update.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_instance_delete.py:0: error: Class cannot subclass "Model" (has type "Any") [misc] +src/aaz_dev/command/model/configuration/_instance_delete.py:0: error: Call to untyped function "CMDVariantField" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_instance_delete.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_instance_delete.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_instance_delete.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_instance_delete.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_instance_delete.py:0: error: Incompatible types in assignment (expression has type "str", base class "CMDInstanceDeleteAction" defined the type as "None") [assignment] +src/aaz_dev/command/model/configuration/_instance_delete.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_instance_delete.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_instance_delete.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_instance_create.py:0: error: Class cannot subclass "Model" (has type "Any") [misc] +src/aaz_dev/command/model/configuration/_instance_create.py:0: error: Call to untyped function "CMDVariantField" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_instance_create.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_instance_create.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_instance_create.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_instance_create.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_instance_create.py:0: error: Incompatible types in assignment (expression has type "str", base class "CMDInstanceCreateAction" defined the type as "None") [assignment] +src/aaz_dev/command/model/configuration/_instance_create.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_instance_create.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_instance_create.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_http_response_body.py:0: error: Class cannot subclass "Model" (has type "Any") [misc] +src/aaz_dev/command/model/configuration/_http_response_body.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_http_response_body.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_http_response_body.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_http_response_body.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_http_response_body.py:0: error: Incompatible types in assignment (expression has type "str", base class "CMDHttpResponseBody" defined the type as "None") [assignment] +src/aaz_dev/command/model/configuration/_http_response_body.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_http_response_body.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_http_response_body.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_http_request_body.py:0: error: Class cannot subclass "Model" (has type "Any") [misc] +src/aaz_dev/command/model/configuration/_http_request_body.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_http_request_body.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_http_request_body.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_http_request_body.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_http_request_body.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_http_request_body.py:0: error: Incompatible types in assignment (expression has type "str", base class "CMDHttpRequestBody" defined the type as "None") [assignment] +src/aaz_dev/command/model/configuration/_http_request_body.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_http_request_body.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_http_request_body.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_http_request_body.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/templates/_filters.py:0: error: Module "jinja2.filters" does not explicitly export attribute "pass_environment" [attr-defined] +src/aaz_dev/command/templates/_filters.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/templates/_filters.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/templates/_filters.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/templates/_filters.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/templates/_filters.py:0: error: Module "jinja2.filters" does not explicitly export attribute "pass_environment" [attr-defined] +src/aaz_dev/cli/templates/_filters.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/templates/_filters.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/templates/_filters.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/templates/_filters.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/templates/_filters.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/templates/_filters.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/templates/_filters.py:0: error: Call to untyped function "constant_convert" in typed context [no-untyped-call] +src/aaz_dev/cli/templates/_filters.py:0: error: Call to untyped function "constant_convert" in typed context [no-untyped-call] +src/aaz_dev/cli/templates/_filters.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/templates/_filters.py:0: error: Call to untyped function "constant_convert" in typed context [no-untyped-call] +src/aaz_dev/cli/templates/_filters.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/templates/_filters.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/templates/_filters.py:0: error: Call to untyped function "convert" in typed context [no-untyped-call] +src/aaz_dev/cli/templates/_filters.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/templates/_filters.py:0: error: Call to untyped function "get_prop" in typed context [no-untyped-call] +src/aaz_dev/command/tests/spec_tests/test_command_tree.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/command/tests/spec_tests/test_command_tree.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/command/tests/spec_tests/test_command_tree.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/command/tests/spec_tests/test_command_tree.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/command/tests/spec_tests/test_command_tree.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/command/tests/spec_tests/test_command_tree.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/command/tests/spec_tests/test_command_tree.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/command/tests/spec_tests/test_command_tree.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/command/tests/spec_tests/test_command_tree.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/command/tests/spec_tests/test_command_tree.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/command/tests/spec_tests/spec_portal_gen_test.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/command/tests/spec_tests/spec_portal_gen_test.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/command/tests/configuration_tests/test_schema.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/command/tests/configuration_tests/test_schema.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/command/tests/configuration_tests/test_schema.py:0: error: Name "CMDStringSchema" is not defined [name-defined] +src/aaz_dev/command/tests/configuration_tests/test_schema.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/command/tests/configuration_tests/test_schema.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/command/tests/configuration_tests/test_schema.py:0: error: Name "CMDIntegerSchema" is not defined [name-defined] +src/aaz_dev/command/tests/configuration_tests/test_schema.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/command/tests/configuration_tests/test_schema.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/command/tests/configuration_tests/test_schema.py:0: error: Name "CMDBooleanSchema" is not defined [name-defined] +src/aaz_dev/command/tests/configuration_tests/test_schema.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/command/tests/configuration_tests/test_schema.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/command/tests/configuration_tests/test_schema.py:0: error: Name "CMDFloatSchema" is not defined [name-defined] +src/aaz_dev/command/tests/configuration_tests/test_schema.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/command/tests/configuration_tests/test_schema.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/command/tests/configuration_tests/test_schema.py:0: error: Name "CMDObjectSchema" is not defined [name-defined] +src/aaz_dev/command/tests/configuration_tests/test_schema.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/command/tests/configuration_tests/test_schema.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/command/tests/configuration_tests/test_schema.py:0: error: Name "CMDArraySchema" is not defined [name-defined] +src/aaz_dev/command/tests/configuration_tests/test_resource.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/command/tests/configuration_tests/test_resource.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/command/tests/configuration_tests/test_resource.py:0: error: Name "CMDResource" is not defined [name-defined] +src/aaz_dev/command/tests/configuration_tests/test_output.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/command/tests/configuration_tests/test_output.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/command/tests/configuration_tests/test_output.py:0: error: Name "CMDObjectOutput" is not defined [name-defined] +src/aaz_dev/command/tests/configuration_tests/test_output.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/command/tests/configuration_tests/test_output.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/command/tests/configuration_tests/test_output.py:0: error: Name "CMDArrayOutput" is not defined [name-defined] +src/aaz_dev/command/tests/configuration_tests/test_output.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/command/tests/configuration_tests/test_output.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/command/tests/configuration_tests/test_output.py:0: error: Name "CMDStringOutput" is not defined [name-defined] +src/aaz_dev/command/tests/configuration_tests/test_operation.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/command/tests/configuration_tests/test_operation.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/command/tests/configuration_tests/test_operation.py:0: error: Name "CMDHttpOperation" is not defined [name-defined] +src/aaz_dev/command/tests/configuration_tests/test_operation.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/command/tests/configuration_tests/test_operation.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/command/tests/configuration_tests/test_operation.py:0: error: Name "CMDInstanceUpdateOperation" is not defined [name-defined] +src/aaz_dev/command/tests/configuration_tests/test_instance_update.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/command/tests/configuration_tests/test_instance_update.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/command/tests/configuration_tests/test_instance_update.py:0: error: Name "CMDJsonInstanceUpdateAction" is not defined [name-defined] +src/aaz_dev/command/tests/configuration_tests/test_http.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/command/tests/configuration_tests/test_http.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/command/tests/configuration_tests/test_http.py:0: error: Name "CMDHttpAction" is not defined [name-defined] +src/aaz_dev/command/tests/configuration_tests/test_condition.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/command/tests/configuration_tests/test_condition.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/command/tests/configuration_tests/test_condition.py:0: error: Name "CMDConditionHasValueOperator" is not defined [name-defined] +src/aaz_dev/command/tests/configuration_tests/test_condition.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/command/tests/configuration_tests/test_condition.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/command/tests/configuration_tests/test_condition.py:0: error: Name "CMDConditionAndOperator" is not defined [name-defined] +src/aaz_dev/command/tests/configuration_tests/test_condition.py:0: error: Name "CMDConditionAndOperator" is not defined [name-defined] +src/aaz_dev/command/tests/configuration_tests/test_condition.py:0: error: Name "CMDConditionNotOperator" is not defined [name-defined] +src/aaz_dev/command/tests/configuration_tests/test_condition.py:0: error: Name "CMDConditionHasValueOperator" is not defined [name-defined] +src/aaz_dev/command/tests/configuration_tests/test_condition.py:0: error: Name "CMDConditionOrOperator" is not defined [name-defined] +src/aaz_dev/command/tests/configuration_tests/test_condition.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/command/tests/configuration_tests/test_condition.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/command/tests/configuration_tests/test_condition.py:0: error: Name "CMDCondition" is not defined [name-defined] +src/aaz_dev/command/tests/configuration_tests/test_client.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/command/tests/configuration_tests/test_client.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/command/tests/configuration_tests/test_client.py:0: error: Name "CMDClientConfig" is not defined [name-defined] +src/aaz_dev/command/tests/configuration_tests/test_client.py:0: error: Name "CMDClientEndpointsByTemplate" is not defined [name-defined] +src/aaz_dev/command/tests/configuration_tests/test_client.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/command/tests/configuration_tests/test_client.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/command/tests/configuration_tests/test_client.py:0: error: Name "CMDClientConfig" is not defined [name-defined] +src/aaz_dev/command/tests/configuration_tests/test_client.py:0: error: Name "CMDClientEndpointsByTemplate" is not defined [name-defined] +src/aaz_dev/command/tests/configuration_tests/test_client.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/command/tests/configuration_tests/test_client.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/command/tests/configuration_tests/test_client.py:0: error: Name "CMDClientConfig" is not defined [name-defined] +src/aaz_dev/command/tests/configuration_tests/test_client.py:0: error: Name "CMDClientEndpointsByTemplate" is not defined [name-defined] +src/aaz_dev/command/tests/configuration_tests/test_client.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/command/tests/configuration_tests/test_client.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/command/tests/configuration_tests/test_client.py:0: error: Name "CMDClientConfig" is not defined [name-defined] +src/aaz_dev/command/tests/configuration_tests/test_client.py:0: error: Name "CMDClientEndpointsByTemplate" is not defined [name-defined] +src/aaz_dev/command/tests/configuration_tests/test_arg_group.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/command/tests/configuration_tests/test_arg_group.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/command/tests/configuration_tests/test_arg_group.py:0: error: Name "CMDArgGroup" is not defined [name-defined] +src/aaz_dev/command/tests/configuration_tests/test_arg.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/command/tests/configuration_tests/test_arg.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/command/tests/configuration_tests/test_arg.py:0: error: Name "CMDStringArg" is not defined [name-defined] +src/aaz_dev/command/tests/configuration_tests/test_arg.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/command/tests/configuration_tests/test_arg.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/command/tests/configuration_tests/test_arg.py:0: error: Name "CMDByteArg" is not defined [name-defined] +src/aaz_dev/command/tests/configuration_tests/test_arg.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/command/tests/configuration_tests/test_arg.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/command/tests/configuration_tests/test_arg.py:0: error: Name "CMDBinaryArg" is not defined [name-defined] +src/aaz_dev/command/tests/configuration_tests/test_arg.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/command/tests/configuration_tests/test_arg.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/command/tests/configuration_tests/test_arg.py:0: error: Name "CMDDurationArg" is not defined [name-defined] +src/aaz_dev/command/tests/configuration_tests/test_arg.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/command/tests/configuration_tests/test_arg.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/command/tests/configuration_tests/test_arg.py:0: error: Name "CMDDateArg" is not defined [name-defined] +src/aaz_dev/command/tests/configuration_tests/test_arg.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/command/tests/configuration_tests/test_arg.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/command/tests/configuration_tests/test_arg.py:0: error: Name "CMDDateTimeArg" is not defined [name-defined] +src/aaz_dev/command/tests/configuration_tests/test_arg.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/command/tests/configuration_tests/test_arg.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/command/tests/configuration_tests/test_arg.py:0: error: Name "CMDUuidArg" is not defined [name-defined] +src/aaz_dev/command/tests/configuration_tests/test_arg.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/command/tests/configuration_tests/test_arg.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/command/tests/configuration_tests/test_arg.py:0: error: Name "CMDPasswordArg" is not defined [name-defined] +src/aaz_dev/command/tests/configuration_tests/test_arg.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/command/tests/configuration_tests/test_arg.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/command/tests/configuration_tests/test_arg.py:0: error: Name "CMDIntegerArg" is not defined [name-defined] +src/aaz_dev/command/tests/configuration_tests/test_arg.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/command/tests/configuration_tests/test_arg.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/command/tests/configuration_tests/test_arg.py:0: error: Name "CMDInteger32Arg" is not defined [name-defined] +src/aaz_dev/command/tests/configuration_tests/test_arg.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/command/tests/configuration_tests/test_arg.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/command/tests/configuration_tests/test_arg.py:0: error: Name "CMDInteger64Arg" is not defined [name-defined] +src/aaz_dev/command/tests/configuration_tests/test_arg.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/command/tests/configuration_tests/test_arg.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/command/tests/configuration_tests/test_arg.py:0: error: Name "CMDBooleanArg" is not defined [name-defined] +src/aaz_dev/command/tests/configuration_tests/test_arg.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/command/tests/configuration_tests/test_arg.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/command/tests/configuration_tests/test_arg.py:0: error: Name "CMDFloatArg" is not defined [name-defined] +src/aaz_dev/command/tests/configuration_tests/test_arg.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/command/tests/configuration_tests/test_arg.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/command/tests/configuration_tests/test_arg.py:0: error: Name "CMDFloat32Arg" is not defined [name-defined] +src/aaz_dev/command/tests/configuration_tests/test_arg.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/command/tests/configuration_tests/test_arg.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/command/tests/configuration_tests/test_arg.py:0: error: Name "CMDFloat64Arg" is not defined [name-defined] +src/aaz_dev/command/tests/configuration_tests/test_arg.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/command/tests/configuration_tests/test_arg.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/command/tests/configuration_tests/test_arg.py:0: error: Name "CMDObjectArg" is not defined [name-defined] +src/aaz_dev/command/tests/configuration_tests/test_arg.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/command/tests/configuration_tests/test_arg.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/command/tests/configuration_tests/test_arg.py:0: error: Name "CMDArrayArg" is not defined [name-defined] +src/aaz_dev/command/tests/configuration_tests/test_arg.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/command/tests/configuration_tests/test_arg.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/command/tests/configuration_tests/test_arg.py:0: error: Name "PolyModelType" is not defined [name-defined] +src/aaz_dev/command/tests/configuration_tests/test_arg.py:0: error: Name "CMDArg" is not defined [name-defined] +src/aaz_dev/app/tests/common.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/app/tests/common.py:0: error: Call to untyped function "cleanup_dev_folder" in typed context [no-untyped-call] +src/aaz_dev/app/tests/common.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/app/tests/common.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/app/tests/common.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/app/tests/common.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/command/model/configuration/_http.py:0: error: Class cannot subclass "Model" (has type "Any") [misc] +src/aaz_dev/command/model/configuration/_http.py:0: error: Call to untyped function "CMDSchemaField" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_http.py:0: error: Call to untyped function "CMDSchemaField" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_http.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_http.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_http.py:0: error: Call to untyped function "_diff_props" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_http.py:0: error: Call to untyped function "_diff_props" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_http.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_http.py:0: error: Argument 1 to "resource_id" has incompatible type "**Mapping[str, str | int]"; expected "str | None" [arg-type] +src/aaz_dev/command/model/configuration/_http.py:0: error: "Mapping[str, str | int]" has no attribute "pop" [attr-defined] +src/aaz_dev/command/model/configuration/_http.py:0: error: Call to untyped function "CMDSubscriptionIdArg" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_http.py:0: error: Call to untyped function "CMDResourceGroupNameArg" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_http.py:0: error: Call to untyped function "CMDResourceLocationArg" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_http.py:0: error: Incompatible types in assignment (expression has type "bool", variable has type "CMDBooleanField") [assignment] +src/aaz_dev/command/model/configuration/_http.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_http.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_http.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_http.py:0: error: Call to untyped function "diff" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_http.py:0: error: Class cannot subclass "Model" (has type "Any") [misc] +src/aaz_dev/command/model/configuration/_http.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_http.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_http.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_http.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_http.py:0: error: Class cannot subclass "Model" (has type "Any") [misc] +src/aaz_dev/command/model/configuration/_http.py:0: error: Call to untyped function "CMDVariantField" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_http.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_http.py:0: error: Class cannot subclass "Model" (has type "Any") [misc] +src/aaz_dev/command/model/configuration/_http.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_http.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_http.py:0: error: Class cannot subclass "Model" (has type "Any") [misc] +src/aaz_dev/command/model/configuration/_http.py:0: error: Call to untyped function "CMDBooleanField" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_http.py:0: error: Call to untyped function "CMDDescriptionField" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_http.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_http.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_http.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_http.py:0: error: Class cannot subclass "Model" (has type "Any") [misc] +src/aaz_dev/command/model/configuration/_http.py:0: error: Call to untyped function "CMDURLPathField" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_http.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_http.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_http.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_http.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_http.py:0: error: Call to untyped function "_diff_responses" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_http.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_http.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_http.py:0: error: Call to untyped function "_build_key" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_http.py:0: error: Call to untyped function "_build_key" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_http.py:0: error: Call to untyped function "_build_key" in typed context [no-untyped-call] +src/aaz_dev/command/templates/__init__.py:0: error: Need type annotation for "_templates" [var-annotated] +src/aaz_dev/command/templates/__init__.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/templates/__init__.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/app/url_converters.py:0: error: Returning Any from function declared to return "str" [no-any-return] +src/aaz_dev/app/url_converters.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/app/url_converters.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/app/url_converters.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/app/url_converters.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_operation.py:0: error: Class cannot subclass "Model" (has type "Any") [misc] +src/aaz_dev/command/model/configuration/_operation.py:0: error: Call to untyped function "CMDVariantField" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_operation.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_operation.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_operation.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_operation.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_operation.py:0: error: Class cannot subclass "Model" (has type "Any") [misc] +src/aaz_dev/command/model/configuration/_operation.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_operation.py:0: error: Incompatible types in assignment (expression has type "str", base class "CMDOperation" defined the type as "None") [assignment] +src/aaz_dev/command/model/configuration/_operation.py:0: error: Call to untyped function "CMDDescriptionField" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_operation.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_operation.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_operation.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_operation.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_operation.py:0: error: Incompatible types in assignment (expression has type "str", base class "CMDOperation" defined the type as "None") [assignment] +src/aaz_dev/command/model/configuration/_operation.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_operation.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_operation.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_operation.py:0: error: Incompatible types in assignment (expression has type "str", base class "CMDOperation" defined the type as "None") [assignment] +src/aaz_dev/command/model/configuration/_operation.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_operation.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_operation.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_operation.py:0: error: Incompatible types in assignment (expression has type "str", base class "CMDOperation" defined the type as "None") [assignment] +src/aaz_dev/command/model/configuration/_operation.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_operation.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_operation.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/api/specs.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/api/specs.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/api/specs.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/api/specs.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/api/specs.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/api/specs.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/api/specs.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/api/specs.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/api/specs.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/api/specs.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/api/specs.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/api/specs.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/api/_cmds.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/swagger/api/_cmds.py:0: error: Need type annotation for "result" (hint: "result: dict[, ] = ...") [var-annotated] +src/aaz_dev/command/api/specs.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/command/api/specs.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/api/specs.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/api/specs.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/command/api/specs.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/api/specs.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/api/specs.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/api/specs.py:0: error: Need type annotation for "result" [var-annotated] +src/aaz_dev/command/api/specs.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/command/api/editor.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/command/api/editor.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/api/editor.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/api/editor.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/api/editor.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/api/editor.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/api/editor.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/api/editor.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/api/editor.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/api/editor.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/api/editor.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/api/editor.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/api/editor.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/api/editor.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/api/editor.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/api/editor.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/api/editor.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/api/editor.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/api/editor.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/api/editor.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/api/editor.py:0: error: Incompatible types in assignment (expression has type "dict[Never, Never]", target has type "str") [assignment] +src/aaz_dev/command/api/editor.py:0: error: Unsupported target for indexed assignment ("str") [index] +src/aaz_dev/command/api/editor.py:0: error: Incompatible types in assignment (expression has type "str", variable has type "dict[str, str]") [assignment] +src/aaz_dev/command/api/editor.py:0: error: Incompatible types in assignment (expression has type "dict[Never, Never]", target has type "str") [assignment] +src/aaz_dev/command/api/editor.py:0: error: Unsupported target for indexed assignment ("str") [index] +src/aaz_dev/command/api/editor.py:0: error: Invalid index type "str" for "str"; expected type "SupportsIndex | slice[Any, Any, Any]" [index] +src/aaz_dev/command/api/editor.py:0: error: Unsupported target for indexed assignment ("str") [index] +src/aaz_dev/command/api/editor.py:0: error: "str" has no attribute "extend" [attr-defined] +src/aaz_dev/command/api/editor.py:0: error: Unsupported target for indexed assignment ("str") [index] +src/aaz_dev/command/api/editor.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/api/editor.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/api/editor.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/api/editor.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/api/editor.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/api/editor.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/api/editor.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/api/editor.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/api/editor.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/api/editor.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/api/editor.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/api/editor.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/api/editor.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/api/_cmds.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/api/_cmds.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/api/_cmds.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/api/_cmds.py:0: error: Need type annotation for "version_resource_map" (hint: "version_resource_map: dict[, ] = ...") [var-annotated] +src/aaz_dev/command/api/_cmds.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/command/api/_cmds.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/api/_cmds.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/api/_cmds.py:0: error: Call to untyped function "update_strategy" in typed context [no-untyped-call] +src/aaz_dev/command/api/_cmds.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/api/_cmds.py:0: error: Call to untyped function "normalize_resource_map" in typed context [no-untyped-call] +src/aaz_dev/command/api/_cmds.py:0: error: Call to untyped function "to_aaz" in typed context [no-untyped-call] +src/aaz_dev/command/api/_cmds.py:0: error: Call to untyped function "to_aaz" in typed context [no-untyped-call] +src/aaz_dev/command/api/_cmds.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/api/_cmds.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/api/_cmds.py:0: error: Call to untyped function "verify_resource" in typed context [no-untyped-call] +src/aaz_dev/command/api/_cmds.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/api/_cmds.py:0: error: Call to untyped function "verify_resource" in typed context [no-untyped-call] +src/aaz_dev/command/api/_cmds.py:0: error: Incompatible types in assignment (expression has type "set[Any]", variable has type "list[Any]") [assignment] +src/aaz_dev/command/api/_cmds.py:0: error: Non-overlapping equality check (left operand type: "set[Any]", right operand type: "list[Any]") [comparison-overlap] +src/aaz_dev/command/api/_cmds.py:0: error: Unsupported operand types for - ("set[Any]" and "list[Any]") [operator] +src/aaz_dev/command/api/_cmds.py:0: error: Unsupported left operand type for - ("list[Any]") [operator] +src/aaz_dev/command/api/_cmds.py:0: error: Call to untyped function "verify_command" in typed context [no-untyped-call] +src/aaz_dev/command/api/_cmds.py:0: error: Incompatible types in assignment (expression has type "set[Any]", variable has type "list[Any]") [assignment] +src/aaz_dev/command/api/_cmds.py:0: error: Non-overlapping equality check (left operand type: "set[Any]", right operand type: "list[Any]") [comparison-overlap] +src/aaz_dev/command/api/_cmds.py:0: error: Unsupported operand types for - ("set[Any]" and "list[Any]") [operator] +src/aaz_dev/command/api/_cmds.py:0: error: Unsupported left operand type for - ("list[Any]") [operator] +src/aaz_dev/command/api/_cmds.py:0: error: Incompatible types in assignment (expression has type "list[Any]", variable has type "set[Any]") [assignment] +src/aaz_dev/command/api/_cmds.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/command/api/_cmds.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/command/api/_cmds.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/api/_cmds.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/api/_cmds.py:0: error: Call to untyped function "process_resource" in typed context [no-untyped-call] +src/aaz_dev/command/api/_cmds.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/api/_cmds.py:0: error: Need type annotation for "command" [var-annotated] +src/aaz_dev/command/api/_cmds.py:0: error: Call to untyped function "export_command" in typed context [no-untyped-call] +src/aaz_dev/command/api/_cmds.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/api/_cmds.py:0: error: Need type annotation for "group" [var-annotated] +src/aaz_dev/command/api/_cmds.py:0: error: Call to untyped function "build_group" in typed context [no-untyped-call] +src/aaz_dev/command/api/_cmds.py:0: error: Call to untyped function "build_command" in typed context [no-untyped-call] +src/aaz_dev/command/api/_cmds.py:0: error: Need type annotation for "index" [var-annotated] +src/aaz_dev/command/api/_cmds.py:0: error: Call to untyped function "build_group" in typed context [no-untyped-call] +src/aaz_dev/cli/api/portal.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/api/az.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/api/az.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/api/az.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/api/az.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/api/az.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/api/az.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/api/az.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/api/_cmds.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/api/_cmds.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/api/_cmds.py:0: error: Need type annotation for "commands_map" (hint: "commands_map: dict[, ] = ...") [var-annotated] +src/aaz_dev/cli/api/_cmds.py:0: error: Call to untyped function "_build_profile" in typed context [no-untyped-call] +src/aaz_dev/cli/api/_cmds.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/api/_cmds.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/api/_cmds.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/api/_cmds.py:0: error: Need type annotation for "version_resource_map" (hint: "version_resource_map: dict[, ] = ...") [var-annotated] +src/aaz_dev/cli/api/_cmds.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/api/_cmds.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/cli/api/_cmds.py:0: error: Call to untyped function "_collect_resources" in typed context [no-untyped-call] +src/aaz_dev/cli/api/_cmds.py:0: error: Call to untyped function "_normalize_resource_map" in typed context [no-untyped-call] +src/aaz_dev/cli/api/_cmds.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/cli/api/_cmds.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/cli/api/_cmds.py:0: error: Call to untyped function "_collect_resources" in typed context [no-untyped-call] +src/aaz_dev/cli/api/_cmds.py:0: error: Need type annotation for "commands_map" (hint: "commands_map: dict[, ] = ...") [var-annotated] +src/aaz_dev/cli/api/_cmds.py:0: error: Call to untyped function "_build_profile" in typed context [no-untyped-call] +src/aaz_dev/cli/api/_cmds.py:0: error: Call to untyped function "to_aaz" in typed context [no-untyped-call] +src/aaz_dev/cli/api/_cmds.py:0: error: Call to untyped function "to_cli" in typed context [no-untyped-call] +src/aaz_dev/cli/api/_cmds.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/cli/api/_cmds.py:0: error: Need type annotation for "command_group_map" [var-annotated] +src/aaz_dev/app/run.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/app/run.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/app/run.py:0: error: Call to untyped function "_change_git_hooks_path" in typed context [no-untyped-call] +src/aaz_dev/app/run.py:0: error: Call to untyped function "is_port_in_use" in typed context [no-untyped-call] +src/aaz_dev/app/run.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_command.py:0: error: Class cannot subclass "Model" (has type "Any") [misc] +src/aaz_dev/command/model/configuration/_command.py:0: error: Call to untyped function "CMDCommandNameField" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_command.py:0: error: Call to untyped function "CMDVersionField" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_command.py:0: error: Call to untyped function "CMDDescriptionField" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_command.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_command.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_command.py:0: error: Call to untyped function "handle_duplicated_options" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_command.py:0: error: Call to untyped function "_build_arg_groups" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_command.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_command.py:0: error: Call to untyped function "_build_output_type_by_subresource_selector" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_command.py:0: error: Call to untyped function "build_output_by_operation" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_command.py:0: error: Incompatible types in assignment (expression has type "bool", variable has type "CMDBooleanField") [assignment] +src/aaz_dev/command/model/configuration/_command.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_command.py:0: error: Incompatible types in assignment (expression has type "str", variable has type "CMDVariantField") [assignment] +src/aaz_dev/command/model/configuration/_command.py:0: error: Incompatible types in assignment (expression has type "str", variable has type "CMDVariantField") [assignment] +src/aaz_dev/command/model/configuration/_command.py:0: error: Call to untyped function "_build_output_type_schema" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_command.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_command.py:0: error: Call to untyped function "_reformat_arg_groups" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_command.py:0: error: Call to untyped function "_reformat_operations" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_command.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_command.py:0: error: Need type annotation for "args_in_group" (hint: "args_in_group: dict[, ] = ...") [var-annotated] +src/aaz_dev/command/model/configuration/_command.py:0: error: Call to untyped function "reformat" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_command.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_command.py:0: error: Need type annotation for "schema_cls_map" (hint: "schema_cls_map: dict[, ] = ...") [var-annotated] +src/aaz_dev/command/model/configuration/_command.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_command.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/command/model/configuration/_command.py:0: error: Need type annotation for "arg_cls_register_map" (hint: "arg_cls_register_map: dict[, ] = ...") [var-annotated] +src/aaz_dev/command/model/configuration/_command.py:0: error: Need type annotation for "schema_cls_register_map" (hint: "schema_cls_register_map: dict[, ] = ...") [var-annotated] +src/aaz_dev/command/model/configuration/_command.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_command.py:0: error: Need type annotation for "arg_groups" (hint: "arg_groups: dict[, ] = ...") [var-annotated] +src/aaz_dev/command/model/configuration/_command.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_command.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_command.py:0: error: Incompatible types in assignment (expression has type "None", variable has type "CMDSelectorIndexField") [assignment] +src/aaz_dev/command/model/configuration/_command.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_command.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_command.py:0: error: Call to untyped function "_compare_argument" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_command.py:0: error: Call to untyped function "_compare_argument" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_command.py:0: error: Call to untyped function "can_be_replaced" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_command.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/api/__init__.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/app/app.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/app/app.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_command_group.py:0: error: Class cannot subclass "Model" (has type "Any") [misc] +src/aaz_dev/command/model/configuration/_command_group.py:0: error: Call to untyped function "CMDCommandGroupNameField" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_command_group.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_command_group.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_command_group.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/command/model/configuration/_client.py:0: error: Class cannot subclass "Model" (has type "Any") [misc] +src/aaz_dev/command/model/configuration/_client.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_client.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_client.py:0: error: Class cannot subclass "Model" (has type "Any") [misc] +src/aaz_dev/command/model/configuration/_client.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_client.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_client.py:0: error: Class cannot subclass "Model" (has type "Any") [misc] +src/aaz_dev/command/model/configuration/_client.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_client.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_client.py:0: error: Class cannot subclass "Model" (has type "Any") [misc] +src/aaz_dev/command/model/configuration/_client.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_client.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_client.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_client.py:0: error: Class cannot subclass "Model" (has type "Any") [misc] +src/aaz_dev/command/model/configuration/_client.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_client.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_client.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_client.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/command/model/configuration/_client.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_client.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_client.py:0: error: Incompatible types in assignment (expression has type "str", base class "CMDClientEndpoints" defined the type as "None") [assignment] +src/aaz_dev/command/model/configuration/_client.py:0: error: Call to untyped function "CMDSchemaField" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_client.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_client.py:0: error: Need type annotation for "placeholders" (hint: "placeholders: dict[, ] = ...") [var-annotated] +src/aaz_dev/command/model/configuration/_client.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_client.py:0: error: Incompatible types in assignment (expression has type "dict[Any, Any]", target has type "str") [assignment] +src/aaz_dev/command/model/configuration/_client.py:0: error: Incompatible types in assignment (expression has type "str", base class "CMDClientEndpoints" defined the type as "None") [assignment] +src/aaz_dev/command/model/configuration/_client.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_client.py:0: error: Need type annotation for "schema_cls_map" (hint: "schema_cls_map: dict[, ] = ...") [var-annotated] +src/aaz_dev/command/model/configuration/_client.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_client.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/command/model/configuration/_client.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_client.py:0: error: Call to untyped function "handle_duplicated_options" in typed context [no-untyped-call] +src/aaz_dev/command/model/configuration/_client.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_client.py:0: error: Class cannot subclass "Model" (has type "Any") [misc] +src/aaz_dev/command/model/configuration/_client.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_configuration.py:0: error: Class cannot subclass "Model" (has type "Any") [misc] +src/aaz_dev/command/model/configuration/_configuration.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_configuration.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/command/model/configuration/_configuration.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/command/controller/workspace_helper.py:0: error: Module "aaz_dev.command.model.configuration" does not explicitly export attribute "CMDArg" [attr-defined] +src/aaz_dev/command/controller/workspace_helper.py:0: error: Module "aaz_dev.command.model.configuration" does not explicitly export attribute "CMDBooleanArg" [attr-defined] +src/aaz_dev/command/controller/workspace_helper.py:0: error: Module "aaz_dev.command.model.configuration" does not explicitly export attribute "CMDClsArg" [attr-defined] +src/aaz_dev/command/controller/workspace_helper.py:0: error: Module "aaz_dev.command.model.configuration" does not explicitly export attribute "CMDArrayArg" [attr-defined] +src/aaz_dev/command/controller/workspace_helper.py:0: error: Module "aaz_dev.command.model.configuration" does not explicitly export attribute "CMDArgumentHelp" [attr-defined] +src/aaz_dev/command/controller/workspace_helper.py:0: error: Module "aaz_dev.command.model.configuration" does not explicitly export attribute "CMDArgDefault" [attr-defined] +src/aaz_dev/command/controller/workspace_helper.py:0: error: Module "aaz_dev.command.model.configuration" does not explicitly export attribute "CMDPasswordArgPromptInput" [attr-defined] +src/aaz_dev/command/controller/workspace_helper.py:0: error: Module "aaz_dev.command.model.configuration" does not explicitly export attribute "CMDArgPromptInput" [attr-defined] +src/aaz_dev/command/controller/workspace_helper.py:0: error: Module "aaz_dev.command.model.configuration" does not explicitly export attribute "CMDFloatArgBase" [attr-defined] +src/aaz_dev/command/controller/workspace_helper.py:0: error: Module "aaz_dev.command.model.configuration" does not explicitly export attribute "CMDIntegerArgBase" [attr-defined] +src/aaz_dev/command/controller/workspace_helper.py:0: error: Module "aaz_dev.command.model.configuration" does not explicitly export attribute "CMDStringArgBase" [attr-defined] +src/aaz_dev/command/controller/workspace_helper.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/workspace_helper.py:0: error: Call to untyped function "_update_cmd_arg" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_helper.py:0: error: Call to untyped function "_update_arg_enum" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_helper.py:0: error: Call to untyped function "_update_boolean_arg" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_helper.py:0: error: Call to untyped function "_update_cls_arg" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_helper.py:0: error: Call to untyped function "_update_array_arg" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_helper.py:0: error: Call to untyped function "_update_arg_enum" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_helper.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/workspace_helper.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/workspace_helper.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/workspace_helper.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/workspace_helper.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/workspace_client_cfg_editor.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/workspace_client_cfg_editor.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/workspace_client_cfg_editor.py:0: error: Call to untyped function "get_cfg_path" of "WorkspaceClientCfgEditor" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_client_cfg_editor.py:0: error: Call to untyped function "reformat" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_client_cfg_editor.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/command/controller/workspace_client_cfg_editor.py:0: error: Function is missing a type annotation for one or more arguments [no-untyped-def] +src/aaz_dev/command/controller/workspace_client_cfg_editor.py:0: error: Incompatible default for argument "ref_cfg" (default has type "None", argument has type "ClientCfgReader") [assignment] +src/aaz_dev/command/controller/workspace_client_cfg_editor.py:0: note: PEP 484 prohibits implicit Optional. Accordingly, mypy has changed its default to no_implicit_optional=True +src/aaz_dev/command/controller/workspace_client_cfg_editor.py:0: note: Use https://github.com/hauntsaninja/no_implicit_optional to automatically upgrade your codebase +src/aaz_dev/command/controller/workspace_client_cfg_editor.py:0: error: Call to untyped function "reformat" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_client_cfg_editor.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/workspace_client_cfg_editor.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/workspace_client_cfg_editor.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/workspace_client_cfg_editor.py:0: error: Call to untyped function "__init__" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_client_cfg_editor.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/command/controller/workspace_client_cfg_editor.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/command/controller/workspace_client_cfg_editor.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/workspace_client_cfg_editor.py:0: error: Call to untyped function "find_arg_by_var" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_client_cfg_editor.py:0: error: Call to untyped function "_update_arg" of "ArgumentUpdateMixin" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_client_cfg_editor.py:0: error: Call to untyped function "reformat" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "get_cfg_folder" of "WorkspaceCfgEditor" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "get_cfg_path" of "WorkspaceCfgEditor" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "get_cfg_path" of "WorkspaceCfgEditor" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDConfiguration" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "reformat" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDConfiguration" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "reformat" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "__init__" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "iter_cfg_files_data" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Incompatible types in assignment (expression has type "list[Any]", variable has type "tuple[Any, ...]") [assignment] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "find_command_group" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "find_command_group" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "reformat" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "_remove_command" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "_add_command" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "reformat" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Incompatible types in assignment (expression has type "list[Any]", variable has type "tuple[Any, ...]") [assignment] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "find_command" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "find_command_group" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Incompatible types in assignment (expression has type "list[Any]", variable has type "tuple[Any, ...]") [assignment] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "find_command" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "find_command_group" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "find_command_group" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDCommandGroup" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDCommandGroup" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDCommandGroup" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "_can_merge" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Need type annotation for "plus_operations_by_method" (hint: "plus_operations_by_method: dict[, ] = ...") [var-annotated] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Need type annotation for "plus_resources_arg_groups" (hint: "plus_resources_arg_groups: list[] = ...") [var-annotated] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDHttpOperation" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "_parse_command_http_op_url_args" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "WorkspaceCfgEditor" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "iter_commands" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Need type annotation for "plus_operations" (hint: "plus_operations: list[] = ...") [var-annotated] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDHttpOperation" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "find_arg_in_command_by_var" of "CfgReader" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "_command_merge_arg_group" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "_parse_command_http_op_url_args" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "_merge_command_operations" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "reformat" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "find_command" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "reformat" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "find_command" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDCommand" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "reformat" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "find_arg_by_var" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "_update_arg" of "ArgumentUpdateMixin" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "reformat" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "find_command" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "_unwrap_cls_arg_in_command" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "reformat" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "find_arg_in_command_with_parent_by_var" of "CfgReader" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDObjectArgBase" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDClsArgBase" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "iter_schema_in_command_by_arg_var" of "CfgReader" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDClsSchemaBase" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "replace_schema" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDObjectSchemaBase" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDArraySchemaBase" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "iter_schema_cls_reference" of "CfgReader" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDClsSchemaBase" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "replace_schema" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDObjectSchemaBase" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDObjectSchemaDiscriminator" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDSchema" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDSchema" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDObjectSchemaBase" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDSchemaBase" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDSchema" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDSchemaBase" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDArraySchemaBase" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDSchemaBase" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDSchema" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDSchemaBase" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "find_command" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "find_arg_with_parent_by_var" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDClsArg" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDObjectArg" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDObjectArg" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "unwrap_cls_arg" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "find_command" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "find_arg_with_parent_by_var" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDArgGroup" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "reformat" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "find_command" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "find_arg_with_parent_by_var" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDObjectArg" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDArgumentHelp" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "reformat" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDHttpOperation" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "parse_http_operation_url_args" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDHttpRequest" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "_can_merge_method" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "iter_commands_by_operations" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "_can_merge_in_request" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "_can_merge_in_response" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "_parse_command_http_op_url_args" of "WorkspaceCfgEditor" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "_parse_command_http_op_url_args" of "WorkspaceCfgEditor" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDHttpOperation" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDHttpOperation" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDDiffLevelEnum" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDHttpOperation" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDHttpOperation" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDDiffLevelEnum" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDArgGroup" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDObjectArg" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "_filter_args_in_object_arg" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDArrayArg" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "_filter_args_in_array_arg" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDArrayArgBase" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "_filter_args_in_item" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDObjectArgBase" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "_filter_args_in_object_arg" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDArrayArgBase" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "_filter_args_in_array_arg" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDObjectArgBase" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDObjectArg" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "_filter_args_in_object_arg" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDArrayArg" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "_filter_args_in_array_arg" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "_filter_args_in_item" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDArgGroup" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "_arg_group_merge_arg" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Argument 1 to "difference_update" of "set" has incompatible type "set[Any] | None"; expected "Iterable[Any]" [arg-type] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Need type annotation for "arg_ops_map" (hint: "arg_ops_map: dict[, ] = ...") [var-annotated] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDHttpOperation" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDCondition" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDConditionAndOperator" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDConditionHasValueOperator" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDConditionNotOperator" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDConditionHasValueOperator" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "iter_commands" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "_find_ref_command_counterpart" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "_inherit_modification_in_command" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "rename_command" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "iter_commands" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "get_update_cmd" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDInstanceUpdateOperation" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "idx_to_list" of "CfgReader" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "find_schema_in_json" of "CfgReader" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDIdentityObjectSchemaBase" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDSchema" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "iter_commands_by_resource" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "iter_commands_by_resource" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "iter_commands_by_resource" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "_generate_sub_commands" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "_add_command" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "_find_ref_command_counterpart" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "_inherit_modification_in_command" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "rename_command" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "reformat" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDInstanceUpdateOperation" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDInstanceCreateOperation" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDInstanceDeleteOperation" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDHttpOperation" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "_iter_arg_cls_definition" of "CfgReader" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "_find_arg_cls_definition" of "CfgReader" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "_iter_arg_cls_reference" of "CfgReader" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "iter_schema_in_command_by_arg_var" of "CfgReader" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "find_schema_in_command" of "CfgReader" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDObjectSchemaBase" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDArraySchemaBase" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "_unwrap_cls_arg_in_command" of "WorkspaceCfgEditor" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Need type annotation for "commands" (hint: "commands: list[] = ...") [var-annotated] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "iter_commands_by_resource" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "_remove_command" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "reformat" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "get_update_cmd" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "find_identity_schema_in_command" of "CfgReader" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "schema_idx_to_subresource_idx" of "CfgReader" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "_generate_identity_sub_commands" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "_add_command" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "reformat" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "get_update_cmd" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDInstanceUpdateOperation" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "iter_schema_in_operation_by_arg_var" of "CfgReader" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "schema_idx_to_subresource_idx" of "CfgReader" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "_generate_sub_commands" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "_add_command" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "reformat" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "find_arg_in_command_by_var" of "CfgReader" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDStringArgBase" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDObjectArg" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "_build_subresource_update_command" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "_build_subresource_update_command" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "_build_subresource_list_or_show_command" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDInstanceUpdateOperation" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "find_arg_in_command_by_var" of "CfgReader" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDStringArgBase" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDArraySchema" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDArrayArg" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "_build_subresource_list_or_show_command" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDClsArgBase" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDObjectArgBase" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "_build_subresource_create_command" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "_build_subresource_update_command" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "_build_subresource_delete_command" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "_build_subresource_list_or_show_command" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDObjectSchema" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDObjectArg" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "_build_subresource_create_command" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "_build_subresource_update_command" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "_build_subresource_delete_command" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "_build_subresource_list_or_show_command" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDObjectArg" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDClsArgBase" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDObjectSchemaBase" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "_build_subresource_create_command" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "_build_subresource_update_command" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "_build_subresource_delete_command" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "_build_subresource_list_or_show_command" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDInstanceUpdateOperation" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDHttpOperation" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDHttpResponseJsonBody" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDCommand" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDResource" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "idx_to_str" of "CfgReader" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "_build_subresource_selector" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "_build_sub_command_base" of "WorkspaceCfgEditor" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "_build_sub_command_base" of "WorkspaceCfgEditor" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDInstanceCreateOperation" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDJsonInstanceCreateAction" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDRequestJson" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "fork_schema_in_json" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDClsSchemaBase" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDSchema" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDObjectSchemaBase" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDObjectSchema" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDArraySchemaBase" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDArraySchema" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "idx_to_str" of "CfgReader" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "_build_sub_command_base" of "WorkspaceCfgEditor" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDInstanceUpdateOperation" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDJsonInstanceUpdateAction" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDRequestJson" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "fork_schema_in_json" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDSchema" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDObjectSchemaBase" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDObjectSchema" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDArraySchemaBase" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDArraySchema" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDIdentityObjectSchemaBase" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "idx_to_str" of "CfgReader" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "trim_identity_schema_by_idx" of "CfgReader" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "_build_sub_command_base" of "WorkspaceCfgEditor" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDInstanceDeleteOperation" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDJsonInstanceDeleteAction" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDRequestJson" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "DEFAULT_CONFIRMATION_PROMPT" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDResponseJson" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDRequestJson" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "idx_to_list" of "CfgReader" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDJsonSubresourceSelector" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDObjectSchema" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDObjectSchemaBase" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDObjectIndex" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "_build_object_index_base" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDArraySchema" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDArraySchemaBase" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDArrayIndex" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "_build_array_index_base" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDSimpleIndexBase" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDSimpleIndexBase" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDObjectSchemaBase" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDObjectIndexBase" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDSelectorIndex" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDClsSchema" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDObjectSchema" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "_build_object_index" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDArraySchema" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "_build_array_index" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "_build_simple_index" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDClsSchema" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDObjectSchema" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "_build_object_index" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDArraySchema" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "_build_array_index" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "_build_simple_index" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "_build_object_index_discriminator" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "_build_object_index_additional_prop" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDArraySchemaBase" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDArrayIndexBase" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDClsSchemaBase" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDObjectSchemaBase" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDObjectSchemaBase" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDIntegerSchema" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDObjectSchemaBase" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "_build_object_index_base" of "WorkspaceCfgEditor" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDArraySchemaBase" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "_build_array_index_base" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "_build_simple_index_base" of "WorkspaceCfgEditor" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDSimpleIndex" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDSimpleIndex" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "_build_simple_index_base" of "WorkspaceCfgEditor" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDObjectIndex" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "_build_object_index_base" of "WorkspaceCfgEditor" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDArrayIndex" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "_build_array_index_base" of "WorkspaceCfgEditor" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDObjectSchemaDiscriminator" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDObjectIndexDiscriminator" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDClsSchema" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDObjectSchema" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "_build_object_index" of "WorkspaceCfgEditor" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDArraySchema" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "_build_array_index" of "WorkspaceCfgEditor" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "_build_simple_index" of "WorkspaceCfgEditor" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "_build_object_index_discriminator" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDObjectSchemaAdditionalProperties" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDObjectIndexAdditionalProperties" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDStringSchema" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDClsSchemaBase" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDObjectSchemaBase" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "_build_object_index_base" of "WorkspaceCfgEditor" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDArraySchemaBase" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "_build_array_index_base" of "WorkspaceCfgEditor" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "_build_simple_index_base" of "WorkspaceCfgEditor" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "find_schema_in_json" of "CfgReader" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDClsSchemaBase" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDClsSchemaBase" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Need type annotation for "cls_register_map" (hint: "cls_register_map: dict[, ] = ...") [var-annotated] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Need type annotation for "pre_miss_implement_cls_names" (hint: "pre_miss_implement_cls_names: set[] = ...") [var-annotated] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "iter_schema_cls_reference_in_schema" of "CfgReader" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDClsSchemaBase" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "replace_schema" of "WorkspaceCfgEditor" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDHttpResponseJsonBody" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDBuildInVariants" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDResponseJson" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "idx_to_list" of "CfgReader" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDJsonSubresourceSelector" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDBuildInVariants" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDObjectSchemaBase" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDObjectIndex" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "_build_object_index_base" of "WorkspaceCfgEditor" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDArraySchemaBase" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Name "CMDArrayIndex" is not defined [name-defined] +src/aaz_dev/command/controller/workspace_cfg_editor.py:0: error: Call to untyped function "_build_array_index_base" of "WorkspaceCfgEditor" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Need type annotation for "workspaces" (hint: "workspaces: list[] = ...") [var-annotated] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Call to untyped function "inherit_client_cfg_from_spec" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Call to untyped function "AAZSpecsManager" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/command/controller/workspace_manager.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/command/controller/workspace_manager.py:0: error: Call to untyped function "__update_mod_names_and_resource_provider" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Call to untyped function "load" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Item "None" of "Any | None" has no attribute "name" [union-attr] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Call to untyped function "save" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/command/controller/workspace_manager.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/command/controller/workspace_manager.py:0: error: Call to untyped function "get_cfg_folder" of "WorkspaceCfgEditor" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Call to untyped function "get_cfg_path" of "WorkspaceCfgEditor" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Item "None" of "Any | None" has no attribute "mod_names" [union-attr] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Item "None" of "Any | None" has no attribute "resource_provider" [union-attr] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Call to untyped function "__update_mod_names_and_resource_provider" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Call to untyped function "get_cfg_path" of "WorkspaceClientCfgEditor" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Item "None" of "Any | None" has no attribute "version" [union-attr] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Item "None" of "Any | None" has no attribute "version" [union-attr] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Item "None" of "Any | None" has no attribute "version" [union-attr] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Item "None" of "Any | None" has no attribute "to_primitive" [union-attr] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/command/controller/workspace_manager.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/command/controller/workspace_manager.py:0: error: Call to untyped function "iter_command_tree_leaves" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Item "None" of "Any | None" has no attribute "mod_names" [union-attr] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Item "None" of "Any | None" has no attribute "mod_names" [union-attr] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Item "None" of "Any | None" has no attribute "resource_provider" [union-attr] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Item "None" of "Any | None" has no attribute "resource_provider" [union-attr] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Item "None" of "Any | None" has no attribute "command_tree" [union-attr] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Call to untyped function "find_command_tree_node" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Call to untyped function "find_command_tree_node" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Call to untyped function "iter_command_tree_nodes" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Item "None" of "Any | None" has no attribute "command_tree" [union-attr] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Call to untyped function "generate_command_group_help" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Call to untyped function "iter_command_tree_leaves" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Call to untyped function "find_command_tree_node" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Call to untyped function "iter_command_tree_leaves" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Call to untyped function "create_command_tree_nodes" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Call to untyped function "_build_command_tree_leaf_from_aaz_ref" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Call to untyped function "_unchecked_add_command_tree_leaf" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Call to untyped function "find_command_tree_node" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Call to untyped function "load_resource" of "WorkspaceCfgEditor" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Call to untyped function "load_cfg_editor_by_resource" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Call to untyped function "find_command_tree_node" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Call to untyped function "find_command_tree_leaf" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Call to untyped function "find_command_tree_node" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Call to untyped function "update_command_tree_node_stage" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Call to untyped function "update_command_tree_leaf_stage" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Call to untyped function "find_command_tree_leaf" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Call to untyped function "find_command_tree_leaf" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Call to untyped function "is_ready_to_skip" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Call to untyped function "generate_operations_examples_by_swagger" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Call to untyped function "find_command_tree_node" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Item "None" of "Any | None" has no attribute "plane" [union-attr] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Item "None" of "Any | None" has no attribute "mod_names" [union-attr] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Call to untyped function "find_command_tree_node" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Call to untyped function "find_command_tree_node" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Call to untyped function "_pop_command_tree_node" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Call to untyped function "create_command_tree_nodes" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Call to untyped function "_add_command_tree_node" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Call to untyped function "find_command_tree_leaf" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Call to untyped function "create_command_tree_nodes" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Call to untyped function "_checked_pop_command_tree_leaf" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Call to untyped function "load_cfg_editor_by_command" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Call to untyped function "_add_command_tree_leaf" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Call to untyped function "find_command_tree_node" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Call to untyped function "find_command_tree_node" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Call to untyped function "check_resource_exist" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Item "None" of "Any | None" has no attribute "plane" [union-attr] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Call to untyped function "_add_new_resources" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Call to untyped function "find_command_tree_node" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Call to untyped function "check_resource_exist" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Item "None" of "Any | None" has no attribute "plane" [union-attr] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Item "None" of "Any | None" has no attribute "mod_names" [union-attr] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Item "None" of "Any | None" has no attribute "resource_provider" [union-attr] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Call to untyped function "_add_new_resources" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Item "None" of "Any | None" has no attribute "plane" [union-attr] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Call to untyped function "_build_draft_cfg_editor" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Call to untyped function "_build_draft_cfg_editor" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Call to untyped function "_add_cfg_editors" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Call to untyped function "_add_cfg_editor" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Call to untyped function "find_command_tree_leaf" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Call to untyped function "generate_unique_name" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Call to untyped function "_check_and_handle_leaf_name_conflict" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Call to untyped function "_set_cfg_editor" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Call to untyped function "_set_cfg_editor" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Call to untyped function "iter_command_tree_leaves" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Item "None" of "Any | None" has no attribute "plane" [union-attr] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Call to untyped function "load_cfg_editor_by_command" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Call to untyped function "_reload_resources" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Call to untyped function "iter_command_tree_leaves" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Call to untyped function "load_cfg_editor_by_command" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Call to untyped function "_reload_resources" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Call to untyped function "_build_draft_cfg_editor" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Call to untyped function "_build_draft_cfg_editor" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Call to untyped function "_unset_cfg_editor" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Call to untyped function "_add_cfg_editors" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Call to untyped function "new_cfg" of "WorkspaceCfgEditor" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Item "None" of "Any | None" has no attribute "plane" [union-attr] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Call to untyped function "find_command_tree_node" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Call to untyped function "iter_command_tree_leaves" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Call to untyped function "load_cfg_editor_by_resource" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Call to untyped function "_unset_cfg_editor" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Call to untyped function "load_cfg_editor_by_resource" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Call to untyped function "find_command_tree_leaf" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Call to untyped function "load_cfg_editor_by_resource" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Call to untyped function "load_cfg_editor_by_resource" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Call to untyped function "_unset_cfg_editor" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Call to untyped function "_unset_cfg_editor" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Call to untyped function "_set_cfg_editor" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Call to untyped function "load_cfg_editor_by_resource" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Call to untyped function "_unset_cfg_editor" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Call to untyped function "_set_cfg_editor" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Call to untyped function "load_cfg_editor_by_resource" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Call to untyped function "_unset_cfg_editor" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Call to untyped function "_set_cfg_editor" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Call to untyped function "load_cfg_editor_by_resource" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Call to untyped function "find_command_tree_leaf" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Call to untyped function "find_command_tree_node" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Call to untyped function "generate_unique_name" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Item "None" of "Any | None" has no attribute "command_tree" [union-attr] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Call to untyped function "_add_command_tree_node" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Call to untyped function "load_cfg_editor_by_command" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Call to untyped function "_add_command_tree_leaf" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Call to untyped function "_check_and_handle_leaf_name_conflict" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Call to untyped function "_unset_cfg_editor" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Call to untyped function "_set_cfg_editor" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Call to untyped function "find_command_tree_leaf" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Call to untyped function "_unchecked_add_command_tree_leaf" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Call to untyped function "find_command_tree_node" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Call to untyped function "generate_unique_name" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Call to untyped function "find_command_tree_leaf" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Call to untyped function "load_cfg_editor_by_command" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Call to untyped function "_unset_cfg_editor" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Call to untyped function "generate_unique_name" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Call to untyped function "generate_command_help" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/command/controller/workspace_manager.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/command/controller/workspace_manager.py:0: error: Call to untyped function "_merge_sub_resources_in_aaz" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Call to untyped function "load_client_cfg_editor" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Call to untyped function "iter_command_tree_leaves" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Call to untyped function "load_cfg_editor_by_command" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Call to untyped function "iter_command_tree_leaves" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Call to untyped function "iter_command_tree_nodes" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Item "None" of "Any | None" has no attribute "command_tree" [union-attr] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/command/controller/workspace_manager.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/command/controller/workspace_manager.py:0: error: Call to untyped function "iter_command_tree_leaves" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Call to untyped function "load_cfg_editor_by_command" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Need type annotation for "existing_sub_resources" (hint: "existing_sub_resources: dict[, ] = ...") [var-annotated] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Call to untyped function "find_command_tree_leaf" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Call to untyped function "find_command_tree_node" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Call to untyped function "_unset_cfg_editor" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Call to untyped function "_set_cfg_editor" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Call to untyped function "find_command_tree_leaf" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Call to untyped function "load_cfg_editor_by_command" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Call to untyped function "iter_command_tree_leaves" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Call to untyped function "load_cfg_editor_by_command" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Call to untyped function "iter_command_tree_leaves" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Call to untyped function "load_cfg_editor_by_command" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Call to untyped function "load_client_cfg_editor" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Call to untyped function "new_client_endpoints_by_template" of "WorkspaceClientCfgEditor" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Call to untyped function "build_endpoint_selector_for_client_config" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Call to untyped function "new_client_endpoints_by_http_operation" of "WorkspaceClientCfgEditor" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Item "None" of "Any | None" has no attribute "plane" [union-attr] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Function is missing a type annotation [no-untyped-def] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Call to untyped function "load_client_cfg" of "WorkspaceClientCfgEditor" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Item "None" of "Any | None" has no attribute "plane" [union-attr] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Call to untyped function "load_client_cfg_editor" in typed context [no-untyped-call] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Function is missing a return type annotation [no-untyped-def] +src/aaz_dev/command/controller/workspace_manager.py:0: note: Use "-> None" if function does not return a value +src/aaz_dev/command/controller/workspace_manager.py:0: error: Item "None" of "Any | None" has no attribute "plane" [union-attr] +src/aaz_dev/command/controller/workspace_manager.py:0: error: Call to untyped function "WorkspaceClientCfgEditor" in typed context [no-untyped-call] diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 00000000..4615ee65 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,9 @@ +[tool.mypy] +python_version = "3.10" +strict = true +# Source layout: package lives under src/ +mypy_path = "src" + +# Third-party libraries without stubs — ignore missing imports for now +# rather than failing on every untyped dependency +ignore_missing_imports = true diff --git a/requirements-dev.txt b/requirements-dev.txt new file mode 100644 index 00000000..74b3d1e8 --- /dev/null +++ b/requirements-dev.txt @@ -0,0 +1,5 @@ +# Dev dependencies — not required at runtime +mypy>=1.10.0 +mypy-baseline>=0.6.0 +monkeytype>=23.3.0 +libcst>=1.0.0 diff --git a/src/aaz_dev/app/app.py b/src/aaz_dev/app/app.py index 70f20352..cec0d577 100644 --- a/src/aaz_dev/app/app.py +++ b/src/aaz_dev/app/app.py @@ -7,9 +7,10 @@ from utils import exceptions from utils.config import Config from aaz_dev.app.run import run_command +import flask.app -def create_app(): +def create_app() -> flask.app.Flask: app = Flask(__name__, static_folder=Config.STATIC_FOLDER, static_url_path=Config.STATIC_URL_PATH) logger = create_logger(app) diff --git a/src/aaz_dev/cli/api/__init__.py b/src/aaz_dev/cli/api/__init__.py index b8205959..e96007c5 100644 --- a/src/aaz_dev/cli/api/__init__.py +++ b/src/aaz_dev/cli/api/__init__.py @@ -1,5 +1,7 @@ -def register_blueprints(app): +from flask.app import Flask + +def register_blueprints(app: Flask) -> None: from . import az, portal, _cmds app.register_blueprint(_cmds.bp) app.register_blueprint(az.bp) diff --git a/src/aaz_dev/command/controller/command_tree.py b/src/aaz_dev/command/controller/command_tree.py index b4361d39..0f0e5499 100644 --- a/src/aaz_dev/command/controller/command_tree.py +++ b/src/aaz_dev/command/controller/command_tree.py @@ -8,6 +8,7 @@ from command.model.specs._command_tree import CMDSpecsSimpleCommand, CMDSpecsSimpleCommandGroup, \ CMDSpecsSimpleCommandTree from utils import exceptions +from typing import List, Any logger = logging.getLogger(__name__) @@ -59,7 +60,7 @@ def build_simple_command_tree(aaz_path): class CMDSpecsPartialCommandGroup: - def __init__(self, names, short_help, uri, aaz_path): + def __init__(self, names: List[str], short_help: str, uri: str, aaz_path: str): self.names = names self.short_help = short_help self.uri = uri @@ -316,12 +317,12 @@ def parse_command_info(cls, info, cmd_names): class CMDSpecsPartialCommandTree: - def __init__(self, aaz_path, root=None): + def __init__(self, aaz_path: str, root: None=None): self.aaz_path = aaz_path self._root = root or CMDSpecsPartialCommandGroup(names=["aaz"], short_help='', uri="/Commands/readme.md", aaz_path=aaz_path).load() - self._modified_command_groups = set() - self._modified_commands = set() + self._modified_command_groups: set[Any] = set() + self._modified_commands: set[Any] = set() @property def root(self): diff --git a/src/aaz_dev/command/controller/shorthand.py b/src/aaz_dev/command/controller/shorthand.py index dec156db..dfcbc68e 100644 --- a/src/aaz_dev/command/controller/shorthand.py +++ b/src/aaz_dev/command/controller/shorthand.py @@ -1,4 +1,6 @@ -def serialize(obj): +from typing import Any + +def serialize(obj: Any) -> str: def dfs(obj): if isinstance(obj, dict): return "{" + ",".join(f'{k}:{dfs(v)}' for k, v in obj.items()) + "}" diff --git a/src/aaz_dev/command/controller/workspace_manager.py b/src/aaz_dev/command/controller/workspace_manager.py index ca255806..15689a4f 100644 --- a/src/aaz_dev/command/controller/workspace_manager.py +++ b/src/aaz_dev/command/controller/workspace_manager.py @@ -19,6 +19,7 @@ from .specs_manager import AAZSpecsManager from .workspace_cfg_editor import WorkspaceCfgEditor, build_endpoint_selector_for_client_config from .workspace_client_cfg_editor import WorkspaceClientCfgEditor +from typing import Any, Optional logger = logging.getLogger('aaz') diff --git a/src/aaz_dev/command/model/configuration/_arg.py b/src/aaz_dev/command/model/configuration/_arg.py index 5e9632bd..3ff73601 100644 --- a/src/aaz_dev/command/model/configuration/_arg.py +++ b/src/aaz_dev/command/model/configuration/_arg.py @@ -9,6 +9,9 @@ from utils import exceptions import copy +from typing import TYPE_CHECKING, Any, Type, Union +if TYPE_CHECKING: + from command.model.configuration._arg_builder import CMDArgBuilder class CMDArgEnumItem(Model): @@ -129,12 +132,12 @@ class Options: def type(self): return self._get_type() - def _get_type(self): + def _get_type(self) -> str: assert self.TYPE_VALUE is not None return self.TYPE_VALUE @classmethod - def _claim_polymorphic(cls, data): + def _claim_polymorphic(cls, data: Any) -> bool: if cls.TYPE_VALUE is None: return False @@ -148,7 +151,7 @@ def _claim_polymorphic(cls, data): return False @classmethod - def build_arg_base(cls, builder): + def build_arg_base(cls, builder: "CMDArgBuilder") -> Any: arg_base = cls() arg_base.nullable = builder.get_nullable() arg_base.blank = builder.get_blank() @@ -171,7 +174,7 @@ def __init__(self, **kwargs): **kwargs ) - def find_model(self, data): + def find_model(self, data: Any) -> Any: if self.claim_function: kls = self.claim_function(self, data) if not kls: @@ -229,7 +232,7 @@ def __init__(self, *args, **kwargs): self.ref_schema = None @classmethod - def _claim_polymorphic(cls, data): + def _claim_polymorphic(cls, data: Any) -> bool: if super()._claim_polymorphic(data): if isinstance(data, dict): # distinguish with CMDArgBase and CMDArg @@ -239,7 +242,7 @@ def _claim_polymorphic(cls, data): return False @classmethod - def build_arg(cls, builder): + def build_arg(cls, builder: "CMDArgBuilder") -> Any: arg = cls.build_arg_base(builder) assert isinstance(arg, CMDArg) arg.var = builder.get_var() @@ -278,7 +281,7 @@ def __init__(self, *args, **kwargs): self.implement = None @classmethod - def _claim_polymorphic(cls, data): + def _claim_polymorphic(cls, data: Any) -> bool: if isinstance(data, dict): type_value = data.get('type', None) if type_value is not None and type_value.startswith("@"): @@ -356,7 +359,7 @@ class CMDStringArgBase(CMDArgBase): enum = ModelType(CMDArgEnum) @classmethod - def build_arg_base(cls, builder): + def build_arg_base(cls, builder: "CMDArgBuilder") -> Any: arg = super().build_arg_base(builder) assert isinstance(arg, CMDStringArgBase) arg.fmt = builder.get_fmt() @@ -838,7 +841,7 @@ class CMDArrayArgBase(CMDArgBase): # default cls = CMDClassField() - def _get_type(self): + def _get_type(self) -> str: return f"{self.TYPE_VALUE}<{self.item.type}>" @classmethod diff --git a/src/aaz_dev/command/model/configuration/_arg_builder.py b/src/aaz_dev/command/model/configuration/_arg_builder.py index e20e592d..142198bf 100644 --- a/src/aaz_dev/command/model/configuration/_arg_builder.py +++ b/src/aaz_dev/command/model/configuration/_arg_builder.py @@ -10,12 +10,15 @@ CMDResourceLocationSchemaBase, CMDPasswordSchema, CMDBooleanSchemaBase from ..configuration._schema import CMDIdentityObjectSchema, CMDStringSchemaBase, \ CMDStringSchema +from typing import TYPE_CHECKING, Any, List, Optional +if TYPE_CHECKING: + from command.model.configuration._arg import CMDStringArg class CMDArgBuilder: @classmethod - def new_builder(cls, schema, parent=None, var_prefix=None, ref_args=None, ref_arg=None, is_update_action=False): + def new_builder(cls, schema: Any, parent: Any=None, var_prefix: Optional[str]=None, ref_args: Any=None, ref_arg: Any=None, is_update_action: bool=False) -> "CMDArgBuilder": if var_prefix is None: if parent is None or parent._arg_var is None: arg_var = "$" @@ -70,7 +73,7 @@ def new_builder(cls, schema, parent=None, var_prefix=None, ref_args=None, ref_ar sub_ref_args = sub_ref_args or None return cls(schema=schema, arg_var=arg_var, ref_arg=ref_arg, sub_ref_args=sub_ref_args, parent=parent, is_update_action=is_update_action, flatten=flatten) - def __init__(self, schema, arg_var, ref_arg, sub_ref_args, parent=None, is_update_action=False, flatten=None): + def __init__(self, schema: Any, arg_var: str, ref_arg: Any, sub_ref_args: Any, parent: Any=None, is_update_action: bool=False, flatten: Any=None) -> None: self.schema = schema self._parent = parent self._arg_var = arg_var @@ -84,7 +87,7 @@ def get_sub_builder(self, schema, ref_args=None, ref_arg=None): return self.new_builder( schema=schema, parent=self, ref_args=ref_args, ref_arg=ref_arg, is_update_action=self._is_update_action) - def _ignore(self): + def _ignore(self) -> bool: if self.schema.frozen: return True if isinstance(self.schema, CMDSchemaBase): @@ -100,7 +103,7 @@ def _build_arg_base(self): assert issubclass(arg_cls, (CMDArgBase, CMDObjectArgAdditionalProperties)) return arg_cls.build_arg_base(self) - def _build_arg(self): + def _build_arg(self) -> "Optional[CMDStringArg]": if self._ignore(): return None @@ -108,7 +111,7 @@ def _build_arg(self): assert issubclass(arg_cls, CMDArg) return arg_cls.build_arg(self) - def _need_flatten(self): + def _need_flatten(self) -> Any: if isinstance(self.schema, CMDObjectSchema): if self.get_cls(): # not support to flatten object which is a cls. @@ -126,7 +129,7 @@ def _need_flatten(self): return self._parent._flatten_discriminators return False - def get_args(self): + def get_args(self) -> "List[CMDStringArg]": if self._ignore(): return [] @@ -259,12 +262,12 @@ def get_additional_props(self): else: return None - def get_required(self): + def get_required(self) -> bool: if not self._is_update_action and isinstance(self.schema, CMDSchema): return self.schema.required return False - def get_nullable(self): + def get_nullable(self) -> bool: if isinstance(self.schema, CMDSchemaBase) and self.schema.nullable: return True @@ -285,7 +288,7 @@ def get_nullable(self): return False - def get_default(self): + def get_default(self) -> Any: if self._ref_arg: # ref_arg already has default value return it if self._ref_arg.default: @@ -297,12 +300,12 @@ def get_default(self): return CMDArgDefault.build_default(self, self.schema.default) return None - def get_configuration_key(self): + def get_configuration_key(self) -> Any: if self._ref_arg: return self._ref_arg.configuration_key return None - def get_prompt(self): + def get_prompt(self) -> Any: if self._ref_arg: # ref_arg already has prompt return it if hasattr(self._ref_arg, "prompt") and self._ref_arg.prompt: @@ -311,7 +314,7 @@ def get_prompt(self): return CMDPasswordArgPromptInput(raw_data={"msg": "Password:"}) return None - def get_blank(self): + def get_blank(self) -> Any: if self.get_prompt() is not None: # disable blank when get prompt is available return None @@ -345,17 +348,17 @@ def get_hide(self): return False - def get_var(self): + def get_var(self) -> str: return self._arg_var @staticmethod - def _build_option_name(name): + def _build_option_name(name: str) -> str: name = name.replace('_', '-') name = re.sub('(.)([A-Z][a-z]+)', r'\1-\2', name) name = re.sub('([a-z0-9])([A-Z])', r'\1-\2', name).lower() return '-'.join([p for p in name.split('-') if p]) - def get_options(self): + def get_options(self) -> List[str]: if self._ref_arg: return [*self._ref_arg.options] @@ -399,7 +402,7 @@ def get_singular_options(self): # return [singular_opt_name, ] return None - def get_help(self): + def get_help(self) -> Any: if self._ref_arg: if self._ref_arg.help: return CMDArgumentHelp(raw_data=self._ref_arg.help.to_native()) @@ -410,12 +413,12 @@ def get_help(self): return h return None - def get_group(self): + def get_group(self) -> Any: if self._ref_arg: return self._ref_arg.group return None - def get_fmt(self): + def get_fmt(self) -> Any: if isinstance(self.schema, CMDObjectSchemaDiscriminator): return None assert hasattr(self.schema, 'fmt') @@ -425,7 +428,7 @@ def get_fmt(self): return self.schema.fmt.build_arg_fmt(self, ref_fmt=ref_fmt) return None - def get_enum(self): + def get_enum(self) -> Any: assert hasattr(self.schema, 'enum') if self.schema.enum: ref_enum = self._ref_arg.enum if self._ref_arg else None diff --git a/src/aaz_dev/command/model/configuration/_client.py b/src/aaz_dev/command/model/configuration/_client.py index 342cb675..ac3c0f4e 100644 --- a/src/aaz_dev/command/model/configuration/_client.py +++ b/src/aaz_dev/command/model/configuration/_client.py @@ -17,6 +17,7 @@ from ._operation import CMDHttpOperation from ._command import handle_duplicated_options from ._resource import CMDResource +from typing import Any, Iterator, List, Tuple, Union logger = logging.getLogger('aaz') @@ -79,7 +80,7 @@ def diff(self, old, level): class _EndpointTemplateMixin: @staticmethod - def _iter_placeholders(template): + def _iter_placeholders(template: str) -> Iterator[Tuple[str, bool]]: endpoint = urlparse(template).netloc while True: idx = 0 @@ -103,7 +104,7 @@ def _iter_placeholders(template): yield placeholder, required @staticmethod - def _reformat(template): + def _reformat(template: str) -> str: parsed = urlparse(template) if parsed.path: if parsed.path == '/' and not parsed.params and not parsed.query and not parsed.fragment: @@ -126,7 +127,7 @@ class CMDClientEndpointTemplate(Model, _EndpointTemplateMixin): class Options: serialize_when_none = False - def iter_placeholders(self): + def iter_placeholders(self) -> Iterator[Any]: return self._iter_placeholders(self.template) def reformat(self, **kwargs): @@ -193,12 +194,12 @@ class Options: def type(self): return self._get_type() - def _get_type(self): + def _get_type(self) -> str: assert self.TYPE_VALUE is not None return self.TYPE_VALUE @classmethod - def _claim_polymorphic(cls, data): + def _claim_polymorphic(cls, data: Any) -> bool: if cls.TYPE_VALUE is None: return False @@ -285,7 +286,7 @@ def reformat(self, **kwargs): if self.params: self.params = sorted(self.params, key=lambda p: p.name) - def prepare(self): + def prepare(self) -> None: params = {} for template in self.templates: for placeholder, required in template.iter_placeholders(): @@ -305,7 +306,7 @@ def prepare(self): }) self.params = sorted(params.values(), key=lambda p: p.name) or None - def generate_args(self, ref_args): + def generate_args(self, ref_args: Any) -> List[Any]: args = [] if self.params: for param in self.params: @@ -441,7 +442,7 @@ def reformat(self, **kwargs): if self.arg_group: self.arg_group.reformat(**kwargs) - def generate_args(self, ref_args=None, ref_options=None): + def generate_args(self, ref_args: Any=None, ref_options: Any=None) -> None: if not ref_args: ref_args = [] if self.arg_group: diff --git a/src/aaz_dev/command/model/configuration/_condition.py b/src/aaz_dev/command/model/configuration/_condition.py index 746fd71c..ab3076de 100644 --- a/src/aaz_dev/command/model/configuration/_condition.py +++ b/src/aaz_dev/command/model/configuration/_condition.py @@ -3,6 +3,7 @@ from schematics.types.serializable import serializable from ._fields import CMDVariantField +from typing import Any class CMDConditionOperator(Model): @@ -13,12 +14,12 @@ class CMDConditionOperator(Model): def type(self): return self._get_type() - def _get_type(self): + def _get_type(self) -> str: assert self.TYPE_VALUE is not None return self.TYPE_VALUE @classmethod - def _claim_polymorphic(cls, data): + def _claim_polymorphic(cls, data: Any) -> bool: if cls.TYPE_VALUE is None: return False diff --git a/src/aaz_dev/command/model/configuration/_fields.py b/src/aaz_dev/command/model/configuration/_fields.py index fdb3b824..f46318e8 100644 --- a/src/aaz_dev/command/model/configuration/_fields.py +++ b/src/aaz_dev/command/model/configuration/_fields.py @@ -2,6 +2,8 @@ from utils.stage import AAZStageEnum, AAZStageField import json import logging +from schematics.datastructures import Context +from typing import Any, Optional, Union logger = logging.getLogger('aaz') @@ -12,13 +14,13 @@ class CMDBooleanField(BooleanType): def __init__(self, **kwargs): super(CMDBooleanField, self).__init__(serialize_when_none=False, default=False, **kwargs) - def to_native(self, value, context=None): + def to_native(self, value: bool, context: Optional[Context]=None) -> Optional[bool]: value = super(CMDBooleanField, self).to_native(value, context) if value is False: return None # return None when value is false to hide field with `serialize_when_none=False` return value - def to_primitive(self, value, context=None): + def to_primitive(self, value: bool, context: Optional[Context]=None) -> Optional[bool]: value = super(CMDBooleanField, self).to_primitive(value, context) if value is False: return None # return None when value is false to hide field with `serialize_when_none=False` @@ -28,13 +30,13 @@ def to_primitive(self, value, context=None): class CMDStageField(AAZStageField): """The stage for command group, command or argument.""" - def to_native(self, value, context=None): + def to_native(self, value: str, context: Optional[Context]=None) -> Optional[str]: value = super(CMDStageField, self).to_native(value, context) if value == AAZStageEnum.Stable: return None # return None when value is false to hide field with `serialize_when_none=False` return value - def to_primitive(self, value, context=None): + def to_primitive(self, value: str, context: Optional[Context]=None) -> Optional[str]: value = super(CMDStageField, self).to_primitive(value, context) if value == AAZStageEnum.Stable: return None # return None when value is false to hide field with `serialize_when_none=False` @@ -67,7 +69,7 @@ class CMDPrimitiveField(BaseType): """ @staticmethod - def convert_from_xml(raw_data): + def convert_from_xml(raw_data: str) -> Any: try: return json.loads(raw_data) except json.JSONDecodeError as err: @@ -82,7 +84,7 @@ def __init__(self, *args, **kwargs): *args, **kwargs, ) - def to_primitive(self, value, context=None): + def to_primitive(self, value: Any, context: Optional[Context]=None) -> Any: # TODO: when value is None, will not call to_primitive, so it will not be converted to null in json. data = super().to_primitive(value, context) if context is not None and "to_xml" in context and context.to_xml is True: diff --git a/src/aaz_dev/command/model/configuration/_instance_update.py b/src/aaz_dev/command/model/configuration/_instance_update.py index 2017d8bd..bdfe4898 100644 --- a/src/aaz_dev/command/model/configuration/_instance_update.py +++ b/src/aaz_dev/command/model/configuration/_instance_update.py @@ -7,6 +7,7 @@ from ._content import CMDRequestJson from ._fields import CMDVariantField +from typing import Dict, Union class CMDInstanceUpdateAction(Model): @@ -16,7 +17,7 @@ class CMDInstanceUpdateAction(Model): ref = CMDVariantField(required=True, deserialize_from=["ref", "instance"]) @classmethod - def _claim_polymorphic(cls, data): + def _claim_polymorphic(cls, data: Dict[str, Union[bool, Dict[str, str], str]]) -> bool: if cls.POLYMORPHIC_KEY is None: return False diff --git a/src/aaz_dev/command/model/configuration/_output.py b/src/aaz_dev/command/model/configuration/_output.py index a8de2157..cdff7b14 100644 --- a/src/aaz_dev/command/model/configuration/_output.py +++ b/src/aaz_dev/command/model/configuration/_output.py @@ -16,7 +16,7 @@ class Options: def type(self): return self._get_type() - def _get_type(self): + def _get_type(self) -> str: assert self.TYPE_VALUE is not None return self.TYPE_VALUE diff --git a/src/aaz_dev/command/model/configuration/_schema.py b/src/aaz_dev/command/model/configuration/_schema.py index a7ceb010..5e0f46fc 100644 --- a/src/aaz_dev/command/model/configuration/_schema.py +++ b/src/aaz_dev/command/model/configuration/_schema.py @@ -35,6 +35,9 @@ import logging import re +from schematics.datastructures import Context +from schematics.util import Constant +from typing import Any, Dict, List, Optional, Union logger = logging.getLogger('aaz') @@ -155,7 +158,7 @@ def _get_type(self): return self.TYPE_VALUE @classmethod - def _claim_polymorphic(cls, data): + def _claim_polymorphic(cls, data: Any) -> bool: if cls.TYPE_VALUE is None: return False @@ -275,7 +278,7 @@ class CMDSchema(CMDSchemaBase): secret = CMDBooleanField() @classmethod - def _claim_polymorphic(cls, data): + def _claim_polymorphic(cls, data: Any) -> bool: if super(CMDSchema, cls)._claim_polymorphic(data): if isinstance(data, dict): # distinguish with CMDSchemaBase and CMDSchema @@ -357,15 +360,15 @@ class CMDClsSchemaBase(CMDSchemaBase): required=True ) - def _get_type(self): + def _get_type(self) -> str: return self._type - def __init__(self, *args, **kwargs): + def __init__(self, *args: Any, **kwargs: Any) -> None: super().__init__(*args, **kwargs) self.implement = None @classmethod - def _claim_polymorphic(cls, data): + def _claim_polymorphic(cls, data: Any) -> bool: if isinstance(data, dict): type_value = data.get('type', None) if type_value is not None and type_value.startswith("@"): @@ -731,14 +734,14 @@ class CMDAnyTypeSchema(CMDAnyTypeSchemaBase, CMDSchema): class CMDObjectSchemaDiscriminatorField(ModelType): - def __init__(self, model_spec=None, **kwargs): + def __init__(self, model_spec: Optional[str]=None, **kwargs: Any) -> None: super(CMDObjectSchemaDiscriminatorField, self).__init__( model_spec=model_spec or CMDObjectSchemaDiscriminator, serialize_when_none=False, **kwargs ) - def export(self, value, format, context=None): + def export(self, value: "CMDObjectSchemaDiscriminator", format: Constant, context: Optional[Context]=None) -> Any: if hasattr(value, 'frozen') and value.frozen: # frozen schema base will be ignored return None @@ -862,7 +865,7 @@ def reformat(self, **kwargs): class CMDObjectSchemaAdditionalPropertiesField(ModelType): - def __init__(self, **kwargs): + def __init__(self, **kwargs: Any) -> None: super(CMDObjectSchemaAdditionalPropertiesField, self).__init__( model_spec=CMDObjectSchemaAdditionalProperties, serialized_name="additionalProps", @@ -871,7 +874,7 @@ def __init__(self, **kwargs): **kwargs ) - def export(self, value, format, context=None): + def export(self, value: CMDObjectSchemaAdditionalProperties, format: Constant, context: Optional[Context]=None) -> Any: if value.frozen: return None return super(CMDObjectSchemaAdditionalPropertiesField, self).export(value, format, context) @@ -1025,7 +1028,7 @@ class CMDArraySchemaBase(CMDSchemaBase): # - read_only cls = CMDClassField() - def _get_type(self): + def _get_type(self) -> str: return f"{self.TYPE_VALUE}<{self.item.type}>" def _diff_base(self, old, level, diff): diff --git a/src/aaz_dev/command/model/configuration/_selector_index.py b/src/aaz_dev/command/model/configuration/_selector_index.py index b5c434f2..b392a8b8 100644 --- a/src/aaz_dev/command/model/configuration/_selector_index.py +++ b/src/aaz_dev/command/model/configuration/_selector_index.py @@ -3,6 +3,8 @@ # Licensed under the MIT License. See License.txt in the project root for license information. # -------------------------------------------------------------------------------------------- +from typing import Any + from schematics.models import Model from schematics.types import StringType, ListType, ModelType, PolyModelType from schematics.types.serializable import serializable @@ -59,7 +61,7 @@ def diff(self, old, level): class CMDSelectorIndexBaseField(PolyModelType): - def __init__(self, **kwargs): + def __init__(self, **kwargs: Any) -> None: super(CMDSelectorIndexBaseField, self).__init__( model_spec=CMDSelectorIndexBase, allow_subclasses=True, @@ -128,7 +130,7 @@ def diff(self, old, level): class CMDSelectorIndexField(PolyModelType): - def __init__(self, **kwargs): + def __init__(self, **kwargs: Any) -> None: super(CMDSelectorIndexField, self).__init__( model_spec=CMDSelectorIndex, allow_subclasses=True, diff --git a/src/aaz_dev/command/model/configuration/_xml.py b/src/aaz_dev/command/model/configuration/_xml.py index 6157ebbc..956c7e3d 100644 --- a/src/aaz_dev/command/model/configuration/_xml.py +++ b/src/aaz_dev/command/model/configuration/_xml.py @@ -1,13 +1,15 @@ import re from lxml.builder import ElementMaker -from lxml.etree import Element, tostring +from lxml.etree import Element, _Element, tostring from xml.sax.saxutils import unescape from xmltodict import parse from schematics.types import ListType, ModelType +from schematics.types.base import BaseType from schematics.types.compound import PolyModelType from schematics.types.serializable import Serializable +from typing import Any, Dict, Optional from ._fields import CMDPrimitiveField from utils.case import to_singular @@ -17,7 +19,7 @@ class XMLSerializer: @classmethod - def to_xml(cls, value): + def to_xml(cls, value: Any) -> str: primitive = value.to_primitive(context={"to_xml": True}) root = build_xml(primitive) return unescape( @@ -25,12 +27,12 @@ def to_xml(cls, value): ) @classmethod - def from_xml(cls, model, xml): + def from_xml(cls, model: Any, xml: str) -> Any: primitive = parse(cls._escape(xml), attr_prefix="") return build_model(model, primitive[XML_ROOT]) @staticmethod - def _escape(data): + def _escape(data: str) -> str: ret = "" lines = re.findall(r"<(.+)>", data) for line in lines: @@ -45,7 +47,7 @@ def _escape(data): return ret -def build_xml(primitive, parent=None): +def build_xml(primitive: Dict[str, Any], parent: Optional[_Element]=None) -> _Element: if parent is None: parent = getattr(ElementMaker(), XML_ROOT)() # normalize element name @@ -56,7 +58,7 @@ def build_xml(primitive, parent=None): return parent -def primitive_to_xml(field_name, data, parent): +def primitive_to_xml(field_name: str, data: Any, parent: _Element) -> None: if isinstance(data, dict): _parent = getattr(ElementMaker(), field_name)() parent.append(build_xml(data, _parent)) @@ -77,7 +79,7 @@ def primitive_to_xml(field_name, data, parent): parent.set(field_name, str(data)) -def build_model(model, primitive): +def build_model(model: Any, primitive: Any) -> Any: if hasattr(model, "_field_list"): instance = model() for field_name, field in model._field_list: @@ -107,7 +109,7 @@ def build_model(model, primitive): return cast(primitive) -def obtain_field_value(prev, curr, data): +def obtain_field_value(prev: BaseType, curr: Any, data: Any) -> Any: if isinstance(prev, ListType): field_value = [] # filter long-summary and singular options @@ -128,7 +130,7 @@ def obtain_field_value(prev, curr, data): return field_value -def _unwrap(field): +def _unwrap(field: BaseType) -> Any: if isinstance(field, ListType): return _unwrap(field.field) elif isinstance(field, ModelType): diff --git a/src/aaz_dev/swagger/api/__init__.py b/src/aaz_dev/swagger/api/__init__.py index 2643a404..4328432f 100644 --- a/src/aaz_dev/swagger/api/__init__.py +++ b/src/aaz_dev/swagger/api/__init__.py @@ -1,4 +1,6 @@ -def register_blueprints(app): +from flask.app import Flask + +def register_blueprints(app: Flask) -> None: from . import specs, _cmds app.register_blueprint(_cmds.bp) app.register_blueprint(specs.bp) diff --git a/src/aaz_dev/swagger/model/schema/parameter.py b/src/aaz_dev/swagger/model/schema/parameter.py index 502e8fc6..87ad034f 100644 --- a/src/aaz_dev/swagger/model/schema/parameter.py +++ b/src/aaz_dev/swagger/model/schema/parameter.py @@ -1,4 +1,5 @@ import logging +from typing import Any from command.model.configuration import CMDRequestJson, CMDBooleanSchema, CMDStringSchema, CMDObjectSchema, \ CMDArraySchema, CMDFloatSchema, CMDIntegerSchema @@ -230,7 +231,7 @@ def to_cmd(self, builder, **kwargs): class ParameterField(PolyModelType): - def __init__(self, support_reference, **kwargs): + def __init__(self, support_reference: bool, **kwargs: Any): model_spec = [ QueryParameter, HeaderParameter, PathParameter, FormDataParameter, BodyParameter ] diff --git a/src/aaz_dev/swagger/model/schema/reference.py b/src/aaz_dev/swagger/model/schema/reference.py index da4a6d35..52ae2c49 100644 --- a/src/aaz_dev/swagger/model/schema/reference.py +++ b/src/aaz_dev/swagger/model/schema/reference.py @@ -1,5 +1,6 @@ from schematics.models import Model from schematics.types import StringType +from typing import Any from uuid import uuid4 @@ -28,7 +29,7 @@ def __hash__(self): class ReferenceField(StringType): - def __init__(self, serialized_name="$ref", deserialize_from="$ref", **kwargs): + def __init__(self, serialized_name: str="$ref", deserialize_from: str="$ref", **kwargs: Any): super(ReferenceField, self).__init__( serialized_name=serialized_name, diff --git a/src/aaz_dev/utils/case.py b/src/aaz_dev/utils/case.py index e58e010c..4ef6947c 100644 --- a/src/aaz_dev/utils/case.py +++ b/src/aaz_dev/utils/case.py @@ -16,5 +16,5 @@ def to_snake_case(name, separator='_'): name = re.sub('([a-z0-9])([A-Z])', r'\1' + separator + r'\2', name).lower() return name.replace('-', separator).replace('_', separator) -def to_singular(name): +def to_singular(name: str) -> str: return _pluralizer.singular(name) diff --git a/src/aaz_dev/utils/client.py b/src/aaz_dev/utils/client.py index b9be1cb0..6ad8400a 100644 --- a/src/aaz_dev/utils/client.py +++ b/src/aaz_dev/utils/client.py @@ -1,4 +1,6 @@ +from typing import Tuple + class CloudEnum: AzureCloud = 'AzureCloud' AzureChinaCloud = 'AzureChinaCloud' @@ -6,5 +8,5 @@ class CloudEnum: AzureGermanCloud = 'AzureGermanCloud' @classmethod - def choices(cls): + def choices(cls) -> Tuple[str, str, str, str]: return tuple(v for k, v in vars(cls).items() if not k.startswith('_') and isinstance(v, str)) diff --git a/src/aaz_dev/utils/exceptions.py b/src/aaz_dev/utils/exceptions.py index 04cc0cb5..068d0158 100644 --- a/src/aaz_dev/utils/exceptions.py +++ b/src/aaz_dev/utils/exceptions.py @@ -1,10 +1,11 @@ import json +from typing import Dict, Optional class InvalidAPIUsage(Exception): status_code = 400 - def __init__(self, message, status_code=None, payload=None): + def __init__(self, message: str, status_code: None=None, payload: Optional[Dict[str, str]]=None) -> None: super().__init__() self.message = message if status_code is not None: @@ -30,7 +31,7 @@ def __str__(self): class VerificationError(InvalidAPIUsage): - def __init__(self, message, details, status_code=None): + def __init__(self, message: str, details: str, status_code: None=None) -> None: super().__init__(message=message, status_code=status_code, payload={ 'details': details }) diff --git a/src/aaz_dev/utils/fields.py b/src/aaz_dev/utils/fields.py index 86e43f7e..20041fce 100644 --- a/src/aaz_dev/utils/fields.py +++ b/src/aaz_dev/utils/fields.py @@ -1,4 +1,5 @@ import typing +from typing import Any from schematics.types import StringType from utils.plane import PlaneEnum from utils.client import CloudEnum @@ -6,7 +7,7 @@ class PlaneField(StringType): - def __init__(self, *args, **kwargs): + def __init__(self, *args: Any, **kwargs: Any) -> None: super().__init__( regex=r'^({})|({}:[a-z0-9_\-.]+)$'.format(PlaneEnum.Mgmt, PlaneEnum._Data), *args, **kwargs @@ -15,7 +16,7 @@ def __init__(self, *args, **kwargs): class CloudField(StringType): - def __init__(self, *args, **kwargs): + def __init__(self, *args: Any, **kwargs: Any) -> None: super().__init__( choices=CloudEnum.choices(), *args, **kwargs diff --git a/src/aaz_dev/utils/plane.py b/src/aaz_dev/utils/plane.py index 111f2581..62eb9bf6 100644 --- a/src/aaz_dev/utils/plane.py +++ b/src/aaz_dev/utils/plane.py @@ -1,6 +1,6 @@ -def create_data_plane_name(resource_provider): +def create_data_plane_name(resource_provider: str) -> str: return 'data-plane:' + resource_provider.lower() @@ -9,7 +9,7 @@ class PlaneEnum: _Data = "data-plane" @staticmethod - def Data(resource_provider): + def Data(resource_provider: str) -> str: """For data plane, it's required to provide resource_provider which defined the scope of data plane.""" return create_data_plane_name(resource_provider) diff --git a/src/aaz_dev/utils/stage.py b/src/aaz_dev/utils/stage.py index e69d84da..a9279a67 100644 --- a/src/aaz_dev/utils/stage.py +++ b/src/aaz_dev/utils/stage.py @@ -1,4 +1,5 @@ from schematics.types import StringType +from typing import Any class AAZStageEnum: @@ -10,7 +11,7 @@ class AAZStageEnum: class AAZStageField(StringType): """The stage for command group, command or argument.""" - def __init__(self, *args, **kwargs): + def __init__(self, *args: Any, **kwargs: Any) -> None: super().__init__( choices=(AAZStageEnum.Experimental, AAZStageEnum.Preview, AAZStageEnum.Stable), default=AAZStageEnum.Stable,