diff --git a/.chronus/changes/py1-2026-3-14-15-3-10.md b/.chronus/changes/py1-2026-3-14-15-3-10.md new file mode 100644 index 00000000000..6c129608051 --- /dev/null +++ b/.chronus/changes/py1-2026-3-14-15-3-10.md @@ -0,0 +1,8 @@ +--- +changeKind: internal +packages: + - "@autorest/python" + - "@azure-tools/typespec-python" +--- + +bumping pylint/mypy versions diff --git a/eng/pipelines/ci.yml b/eng/pipelines/ci.yml index 558c78a4743..6bbb6e4f6ef 100644 --- a/eng/pipelines/ci.yml +++ b/eng/pipelines/ci.yml @@ -49,20 +49,15 @@ jobs: strategy: matrix: - Linux_Python3.9: + Linux_Python3.10: OSName: "Linux" Pool: ${{ variables.LINUXPOOL }} OSVmImage: ${{ variables.LINUXVMIMAGE}} - PythonVersion: "3.9" - Windows_Python3.9: + PythonVersion: "3.10" + Windows_Python3.10: OSName: "Windows" Pool: ${{ variables.WINDOWSPOOL }} OSVmImage: ${{ variables.WINDOWSVMIMAGE}} - PythonVersion: "3.9" - Linux_Python3.10: - OSName: "Linux" - Pool: ${{ variables.LINUXPOOL }} - OSVmImage: ${{ variables.LINUXVMIMAGE}} PythonVersion: "3.10" Linux_Python3.11: OSName: "Linux" @@ -140,20 +135,15 @@ jobs: strategy: matrix: - Linux_Python3.9: + Linux_Python310: OSName: "Linux" Pool: ${{ variables.LINUXPOOL }} OSVmImage: ${{ variables.LINUXVMIMAGE}} - PythonVersion: "3.9" - Windows_Python3.9: + PythonVersion: "3.10" + Windows_Python310: OSName: "Windows" Pool: ${{ variables.WINDOWSPOOL }} OSVmImage: ${{ variables.WINDOWSVMIMAGE}} - PythonVersion: "3.9" - Linux_Python310: - OSName: "Linux" - Pool: ${{ variables.LINUXPOOL }} - OSVmImage: ${{ variables.LINUXVMIMAGE}} PythonVersion: "3.10" Linux_Python311: OSName: "Linux" diff --git a/eng/pipelines/generated-code-checks-template.yml b/eng/pipelines/generated-code-checks-template.yml index 3f0c63e5ddf..5128bf1a226 100644 --- a/eng/pipelines/generated-code-checks-template.yml +++ b/eng/pipelines/generated-code-checks-template.yml @@ -10,7 +10,7 @@ steps: - script: npm run test -- --env=lint --flavor=${{ parameters.folderName }} displayName: Lint ${{ parameters.folderName }} - Python $(PythonVersion) workingDirectory: $(Build.SourcesDirectory)/autorest.python/packages/${{parameters.package}} - condition: and(eq(variables['PythonVersion'], '3.9'), or(contains('${{ parameters.folderName }}', 'version-tolerant'), eq('${{parameters.package}}', 'typespec-python'))) + condition: and(eq(variables['PythonVersion'], '3.10'), or(contains('${{ parameters.folderName }}', 'version-tolerant'), eq('${{parameters.package}}', 'typespec-python'))) - script: npm run test -- --env=mypy --flavor=${{ parameters.folderName }} displayName: Mypy ${{ parameters.folderName }} - Python $(PythonVersion) diff --git a/eng/pipelines/preview.yml b/eng/pipelines/preview.yml index 4040a149350..a409fefb3ef 100644 --- a/eng/pipelines/preview.yml +++ b/eng/pipelines/preview.yml @@ -76,9 +76,9 @@ extends: versionSpec: 3.11 SdkInitializationSteps: - task: UsePythonVersion@0 - displayName: "Use Python 3.9" + displayName: "Use Python 3.10" inputs: - versionSpec: 3.9 + versionSpec: 3.10 - script: | echo "npm install -g @azure-tools/typespec-client-generator-cli" npm install -g @azure-tools/typespec-client-generator-cli diff --git a/eng/pipelines/publish-dev-release.yml b/eng/pipelines/publish-dev-release.yml index 6285827ee67..3dc9241c93d 100644 --- a/eng/pipelines/publish-dev-release.yml +++ b/eng/pipelines/publish-dev-release.yml @@ -3,7 +3,7 @@ pr: none variables: NodeVersion: "20.x" - PythonVersion: "3.9" + PythonVersion: "3.10" TestFolder: "$(Build.SourcesDirectory)/test/" pool: @@ -16,9 +16,9 @@ steps: versionSpec: "$(NodeVersion)" - task: UsePythonVersion@0 - displayName: "Use Python 3.9" + displayName: "Use Python 3.10" inputs: - versionSpec: 3.9 + versionSpec: 3.10 - script: | cd $(Build.SourcesDirectory) diff --git a/packages/autorest.python/autorest/__init__.py b/packages/autorest.python/autorest/__init__.py index b71e984d4ad..6e0890e4a08 100644 --- a/packages/autorest.python/autorest/__init__.py +++ b/packages/autorest.python/autorest/__init__.py @@ -13,7 +13,6 @@ from pygen import ReaderAndWriter, Plugin, YamlUpdatePlugin, OptionsDict from .jsonrpc import AutorestAPI - _LOGGER = logging.getLogger(__name__) diff --git a/packages/autorest.python/autorest/codegen.py b/packages/autorest.python/autorest/codegen.py index 44491bda99d..d34ab9df237 100644 --- a/packages/autorest.python/autorest/codegen.py +++ b/packages/autorest.python/autorest/codegen.py @@ -16,7 +16,6 @@ from .jsonrpc import AutorestAPI from . import PluginAutorest - _LOGGER = logging.getLogger(__name__) diff --git a/packages/autorest.python/autorest/jsonrpc/localapi.py b/packages/autorest.python/autorest/jsonrpc/localapi.py index e3b990233d5..5bed10228f7 100644 --- a/packages/autorest.python/autorest/jsonrpc/localapi.py +++ b/packages/autorest.python/autorest/jsonrpc/localapi.py @@ -9,7 +9,6 @@ from . import AutorestAPI, Channel - _LOGGER = logging.getLogger(__name__) diff --git a/packages/autorest.python/autorest/jsonrpc/server.py b/packages/autorest.python/autorest/jsonrpc/server.py index 1f4b5e58f1d..c2501654447 100644 --- a/packages/autorest.python/autorest/jsonrpc/server.py +++ b/packages/autorest.python/autorest/jsonrpc/server.py @@ -14,7 +14,6 @@ from .stdstream import read_message, write_message - _LOGGER = logging.getLogger(__name__) diff --git a/packages/autorest.python/autorest/jsonrpc/stdstream.py b/packages/autorest.python/autorest/jsonrpc/stdstream.py index 0fe3f02c696..440b5aa566b 100644 --- a/packages/autorest.python/autorest/jsonrpc/stdstream.py +++ b/packages/autorest.python/autorest/jsonrpc/stdstream.py @@ -14,7 +14,6 @@ from . import AutorestAPI, Channel - _LOGGER = logging.getLogger(__name__) diff --git a/packages/autorest.python/autorest/m2r.py b/packages/autorest.python/autorest/m2r.py index c65134bdf8e..576093aca5d 100644 --- a/packages/autorest.python/autorest/m2r.py +++ b/packages/autorest.python/autorest/m2r.py @@ -4,6 +4,7 @@ # license information. # -------------------------------------------------------------------------- """An autorest MD to RST plugin.""" + import logging from typing import Any, Dict, Set, Union @@ -12,7 +13,6 @@ from . import YamlUpdatePluginAutorest - _LOGGER = logging.getLogger(__name__) diff --git a/packages/autorest.python/autorest/m4reformatter/__init__.py b/packages/autorest.python/autorest/m4reformatter/__init__.py index e51865b3734..010e4babd7c 100644 --- a/packages/autorest.python/autorest/m4reformatter/__init__.py +++ b/packages/autorest.python/autorest/m4reformatter/__init__.py @@ -5,6 +5,7 @@ # license information. # -------------------------------------------------------------------------- """The modelerfour reformatter autorest plugin.""" + import re import copy import logging @@ -19,7 +20,6 @@ ) from .. import YamlUpdatePluginAutorest - ORIGINAL_ID_TO_UPDATED_TYPE: Dict[int, Dict[str, Any]] = {} OAUTH_TYPE = "OAuth2" KEY_TYPE = "Key" @@ -748,7 +748,7 @@ def _update_content_type_parameter( param["language"]["default"]["description"] = description return param - def _update_parameters_helper( + def _update_parameters_helper( # pylint: disable=too-many-positional-arguments self, parameters: List[Dict[str, Any]], body_parameter: Optional[Dict[str, Any]], diff --git a/packages/autorest.python/autorest/preprocess.py b/packages/autorest.python/autorest/preprocess.py index 015a24d2af6..a11c27d2688 100644 --- a/packages/autorest.python/autorest/preprocess.py +++ b/packages/autorest.python/autorest/preprocess.py @@ -4,6 +4,7 @@ # license information. # -------------------------------------------------------------------------- """The preprocessing autorest plugin.""" + from typing import Dict, Any from pygen.preprocess import PreProcessPlugin from . import YamlUpdatePluginAutorest diff --git a/packages/autorest.python/package.json b/packages/autorest.python/package.json index 8fdd3b36a3e..5e8ea709c91 100644 --- a/packages/autorest.python/package.json +++ b/packages/autorest.python/package.json @@ -29,7 +29,7 @@ }, "homepage": "https://github.com/Azure/autorest.python/blob/main/README.md", "dependencies": { - "@typespec/http-client-python": "https://artprodcus3.artifacts.visualstudio.com/A0fb41ef4-5012-48a9-bf39-4ee3de03ee35/29ec6040-b234-4e31-b139-33dc4287b756/_apis/artifact/cGlwZWxpbmVhcnRpZmFjdDovL2F6dXJlLXNkay9wcm9qZWN0SWQvMjllYzYwNDAtYjIzNC00ZTMxLWIxMzktMzNkYzQyODdiNzU2L2J1aWxkSWQvNjE1ODIzMi9hcnRpZmFjdE5hbWUvYnVpbGRfYXJ0aWZhY3RzX3B5dGhvbg2/content?format=file&subPath=%2Fpackages%2Ftypespec-http-client-python-0.28.3.tgz", + "@typespec/http-client-python": "https://artprodcus3.artifacts.visualstudio.com/A0fb41ef4-5012-48a9-bf39-4ee3de03ee35/29ec6040-b234-4e31-b139-33dc4287b756/_apis/artifact/cGlwZWxpbmVhcnRpZmFjdDovL2F6dXJlLXNkay9wcm9qZWN0SWQvMjllYzYwNDAtYjIzNC00ZTMxLWIxMzktMzNkYzQyODdiNzU2L2J1aWxkSWQvNjE1OTE5Ny9hcnRpZmFjdE5hbWUvYnVpbGRfYXJ0aWZhY3RzX3B5dGhvbg2/content?format=file&subPath=%2Fpackages%2Ftypespec-http-client-python-0.28.3.tgz", "@autorest/system-requirements": "~1.0.2", "fs-extra": "~11.2.0", "tsx": "^4.21.0" diff --git a/packages/autorest.python/samples/specification/azure-mgmt-pyproject/test/azure-mgmt-pyproject/azure/mgmt/pyproject/_patch.py b/packages/autorest.python/samples/specification/azure-mgmt-pyproject/test/azure-mgmt-pyproject/azure/mgmt/pyproject/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/autorest.python/samples/specification/azure-mgmt-pyproject/test/azure-mgmt-pyproject/azure/mgmt/pyproject/_patch.py +++ b/packages/autorest.python/samples/specification/azure-mgmt-pyproject/test/azure-mgmt-pyproject/azure/mgmt/pyproject/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/samples/specification/azure-mgmt-pyproject/test/azure-mgmt-pyproject/azure/mgmt/pyproject/aio/_patch.py b/packages/autorest.python/samples/specification/azure-mgmt-pyproject/test/azure-mgmt-pyproject/azure/mgmt/pyproject/aio/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/autorest.python/samples/specification/azure-mgmt-pyproject/test/azure-mgmt-pyproject/azure/mgmt/pyproject/aio/_patch.py +++ b/packages/autorest.python/samples/specification/azure-mgmt-pyproject/test/azure-mgmt-pyproject/azure/mgmt/pyproject/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/samples/specification/azure-mgmt-pyproject/test/azure-mgmt-pyproject/azure/mgmt/pyproject/aio/operations/_patch.py b/packages/autorest.python/samples/specification/azure-mgmt-pyproject/test/azure-mgmt-pyproject/azure/mgmt/pyproject/aio/operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/autorest.python/samples/specification/azure-mgmt-pyproject/test/azure-mgmt-pyproject/azure/mgmt/pyproject/aio/operations/_patch.py +++ b/packages/autorest.python/samples/specification/azure-mgmt-pyproject/test/azure-mgmt-pyproject/azure/mgmt/pyproject/aio/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/samples/specification/azure-mgmt-pyproject/test/azure-mgmt-pyproject/azure/mgmt/pyproject/operations/_patch.py b/packages/autorest.python/samples/specification/azure-mgmt-pyproject/test/azure-mgmt-pyproject/azure/mgmt/pyproject/operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/autorest.python/samples/specification/azure-mgmt-pyproject/test/azure-mgmt-pyproject/azure/mgmt/pyproject/operations/_patch.py +++ b/packages/autorest.python/samples/specification/azure-mgmt-pyproject/test/azure-mgmt-pyproject/azure/mgmt/pyproject/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/samples/specification/azure-mgmt-test/test/azure-mgmt-test/azure/mgmt/test/_patch.py b/packages/autorest.python/samples/specification/azure-mgmt-test/test/azure-mgmt-test/azure/mgmt/test/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/autorest.python/samples/specification/azure-mgmt-test/test/azure-mgmt-test/azure/mgmt/test/_patch.py +++ b/packages/autorest.python/samples/specification/azure-mgmt-test/test/azure-mgmt-test/azure/mgmt/test/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/samples/specification/azure-mgmt-test/test/azure-mgmt-test/azure/mgmt/test/aio/_patch.py b/packages/autorest.python/samples/specification/azure-mgmt-test/test/azure-mgmt-test/azure/mgmt/test/aio/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/autorest.python/samples/specification/azure-mgmt-test/test/azure-mgmt-test/azure/mgmt/test/aio/_patch.py +++ b/packages/autorest.python/samples/specification/azure-mgmt-test/test/azure-mgmt-test/azure/mgmt/test/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/samples/specification/azure-mgmt-test/test/azure-mgmt-test/azure/mgmt/test/aio/operations/_patch.py b/packages/autorest.python/samples/specification/azure-mgmt-test/test/azure-mgmt-test/azure/mgmt/test/aio/operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/autorest.python/samples/specification/azure-mgmt-test/test/azure-mgmt-test/azure/mgmt/test/aio/operations/_patch.py +++ b/packages/autorest.python/samples/specification/azure-mgmt-test/test/azure-mgmt-test/azure/mgmt/test/aio/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/samples/specification/azure-mgmt-test/test/azure-mgmt-test/azure/mgmt/test/operations/_patch.py b/packages/autorest.python/samples/specification/azure-mgmt-test/test/azure-mgmt-test/azure/mgmt/test/operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/autorest.python/samples/specification/azure-mgmt-test/test/azure-mgmt-test/azure/mgmt/test/operations/_patch.py +++ b/packages/autorest.python/samples/specification/azure-mgmt-test/test/azure-mgmt-test/azure/mgmt/test/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/samples/specification/azure-mgmt-test/test/azure-mgmt-test/setup.py b/packages/autorest.python/samples/specification/azure-mgmt-test/test/azure-mgmt-test/setup.py index f84d55c6a23..8ec70db0623 100644 --- a/packages/autorest.python/samples/specification/azure-mgmt-test/test/azure-mgmt-test/setup.py +++ b/packages/autorest.python/samples/specification/azure-mgmt-test/test/azure-mgmt-test/setup.py @@ -11,7 +11,6 @@ import re from setuptools import setup, find_packages - PACKAGE_NAME = "azure-mgmt-test" PACKAGE_PPRINT_NAME = "Test Management" diff --git a/packages/autorest.python/samples/specification/azure-test/test/azure-test/azure/test/_generated/_patch.py b/packages/autorest.python/samples/specification/azure-test/test/azure-test/azure/test/_generated/_patch.py index f7dd3251033..45594112297 100644 --- a/packages/autorest.python/samples/specification/azure-test/test/azure-test/azure/test/_generated/_patch.py +++ b/packages/autorest.python/samples/specification/azure-test/test/azure-test/azure/test/_generated/_patch.py @@ -6,6 +6,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/samples/specification/azure-test/test/azure-test/azure/test/_generated/aio/_patch.py b/packages/autorest.python/samples/specification/azure-test/test/azure-test/azure/test/_generated/aio/_patch.py index f7dd3251033..45594112297 100644 --- a/packages/autorest.python/samples/specification/azure-test/test/azure-test/azure/test/_generated/aio/_patch.py +++ b/packages/autorest.python/samples/specification/azure-test/test/azure-test/azure/test/_generated/aio/_patch.py @@ -6,6 +6,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/samples/specification/azure-test/test/azure-test/azure/test/_generated/aio/operations/_patch.py b/packages/autorest.python/samples/specification/azure-test/test/azure-test/azure/test/_generated/aio/operations/_patch.py index f7dd3251033..45594112297 100644 --- a/packages/autorest.python/samples/specification/azure-test/test/azure-test/azure/test/_generated/aio/operations/_patch.py +++ b/packages/autorest.python/samples/specification/azure-test/test/azure-test/azure/test/_generated/aio/operations/_patch.py @@ -6,6 +6,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/samples/specification/azure-test/test/azure-test/azure/test/_generated/models/_patch.py b/packages/autorest.python/samples/specification/azure-test/test/azure-test/azure/test/_generated/models/_patch.py index f7dd3251033..45594112297 100644 --- a/packages/autorest.python/samples/specification/azure-test/test/azure-test/azure/test/_generated/models/_patch.py +++ b/packages/autorest.python/samples/specification/azure-test/test/azure-test/azure/test/_generated/models/_patch.py @@ -6,6 +6,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/samples/specification/azure-test/test/azure-test/azure/test/_generated/operations/_patch.py b/packages/autorest.python/samples/specification/azure-test/test/azure-test/azure/test/_generated/operations/_patch.py index f7dd3251033..45594112297 100644 --- a/packages/autorest.python/samples/specification/azure-test/test/azure-test/azure/test/_generated/operations/_patch.py +++ b/packages/autorest.python/samples/specification/azure-test/test/azure-test/azure/test/_generated/operations/_patch.py @@ -6,6 +6,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/samples/specification/azure_key_credential/generated/azure/key/credential/sample/_patch.py b/packages/autorest.python/samples/specification/azure_key_credential/generated/azure/key/credential/sample/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/samples/specification/azure_key_credential/generated/azure/key/credential/sample/_patch.py +++ b/packages/autorest.python/samples/specification/azure_key_credential/generated/azure/key/credential/sample/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/samples/specification/azure_key_credential/generated/azure/key/credential/sample/aio/_patch.py b/packages/autorest.python/samples/specification/azure_key_credential/generated/azure/key/credential/sample/aio/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/samples/specification/azure_key_credential/generated/azure/key/credential/sample/aio/_patch.py +++ b/packages/autorest.python/samples/specification/azure_key_credential/generated/azure/key/credential/sample/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/samples/specification/azure_key_credential/generated/azure/key/credential/sample/aio/operations/_patch.py b/packages/autorest.python/samples/specification/azure_key_credential/generated/azure/key/credential/sample/aio/operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/samples/specification/azure_key_credential/generated/azure/key/credential/sample/aio/operations/_patch.py +++ b/packages/autorest.python/samples/specification/azure_key_credential/generated/azure/key/credential/sample/aio/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/samples/specification/azure_key_credential/generated/azure/key/credential/sample/operations/_patch.py b/packages/autorest.python/samples/specification/azure_key_credential/generated/azure/key/credential/sample/operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/samples/specification/azure_key_credential/generated/azure/key/credential/sample/operations/_patch.py +++ b/packages/autorest.python/samples/specification/azure_key_credential/generated/azure/key/credential/sample/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/samples/specification/azure_key_credential/generated/setup.py b/packages/autorest.python/samples/specification/azure_key_credential/generated/setup.py index d6e4e96b8f7..cb7577b5b7a 100644 --- a/packages/autorest.python/samples/specification/azure_key_credential/generated/setup.py +++ b/packages/autorest.python/samples/specification/azure_key_credential/generated/setup.py @@ -8,7 +8,6 @@ from setuptools import setup, find_packages - PACKAGE_NAME = "azure-key-credential-sample" version = "0.1.0" diff --git a/packages/autorest.python/samples/specification/basic/generated/azure/basic/sample/_patch.py b/packages/autorest.python/samples/specification/basic/generated/azure/basic/sample/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/samples/specification/basic/generated/azure/basic/sample/_patch.py +++ b/packages/autorest.python/samples/specification/basic/generated/azure/basic/sample/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/samples/specification/basic/generated/azure/basic/sample/aio/_patch.py b/packages/autorest.python/samples/specification/basic/generated/azure/basic/sample/aio/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/samples/specification/basic/generated/azure/basic/sample/aio/_patch.py +++ b/packages/autorest.python/samples/specification/basic/generated/azure/basic/sample/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/samples/specification/basic/generated/azure/basic/sample/aio/operations/_patch.py b/packages/autorest.python/samples/specification/basic/generated/azure/basic/sample/aio/operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/samples/specification/basic/generated/azure/basic/sample/aio/operations/_patch.py +++ b/packages/autorest.python/samples/specification/basic/generated/azure/basic/sample/aio/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/samples/specification/basic/generated/azure/basic/sample/operations/_patch.py b/packages/autorest.python/samples/specification/basic/generated/azure/basic/sample/operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/samples/specification/basic/generated/azure/basic/sample/operations/_patch.py +++ b/packages/autorest.python/samples/specification/basic/generated/azure/basic/sample/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/samples/specification/basic/generated/setup.py b/packages/autorest.python/samples/specification/basic/generated/setup.py index 597610ab531..2a0b62343cd 100644 --- a/packages/autorest.python/samples/specification/basic/generated/setup.py +++ b/packages/autorest.python/samples/specification/basic/generated/setup.py @@ -8,7 +8,6 @@ from setuptools import setup, find_packages - PACKAGE_NAME = "azure-basic-sample" version = "0.1.0" diff --git a/packages/autorest.python/samples/specification/directives/generated/azure/directives/sample/_operations/_patch.py b/packages/autorest.python/samples/specification/directives/generated/azure/directives/sample/_operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/samples/specification/directives/generated/azure/directives/sample/_operations/_patch.py +++ b/packages/autorest.python/samples/specification/directives/generated/azure/directives/sample/_operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/samples/specification/directives/generated/azure/directives/sample/_patch.py b/packages/autorest.python/samples/specification/directives/generated/azure/directives/sample/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/samples/specification/directives/generated/azure/directives/sample/_patch.py +++ b/packages/autorest.python/samples/specification/directives/generated/azure/directives/sample/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/samples/specification/directives/generated/azure/directives/sample/aio/_operations/_patch.py b/packages/autorest.python/samples/specification/directives/generated/azure/directives/sample/aio/_operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/samples/specification/directives/generated/azure/directives/sample/aio/_operations/_patch.py +++ b/packages/autorest.python/samples/specification/directives/generated/azure/directives/sample/aio/_operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/samples/specification/directives/generated/azure/directives/sample/aio/_patch.py b/packages/autorest.python/samples/specification/directives/generated/azure/directives/sample/aio/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/samples/specification/directives/generated/azure/directives/sample/aio/_patch.py +++ b/packages/autorest.python/samples/specification/directives/generated/azure/directives/sample/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/samples/specification/directives/generated/setup.py b/packages/autorest.python/samples/specification/directives/generated/setup.py index 4ac09a3c1c1..20c122573f6 100644 --- a/packages/autorest.python/samples/specification/directives/generated/setup.py +++ b/packages/autorest.python/samples/specification/directives/generated/setup.py @@ -8,7 +8,6 @@ from setuptools import setup, find_packages - PACKAGE_NAME = "azure-directives-sample" version = "0.1.0" diff --git a/packages/autorest.python/samples/specification/management/generated/azure/mgmt/sample/_patch.py b/packages/autorest.python/samples/specification/management/generated/azure/mgmt/sample/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/samples/specification/management/generated/azure/mgmt/sample/_patch.py +++ b/packages/autorest.python/samples/specification/management/generated/azure/mgmt/sample/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/samples/specification/management/generated/azure/mgmt/sample/aio/_patch.py b/packages/autorest.python/samples/specification/management/generated/azure/mgmt/sample/aio/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/samples/specification/management/generated/azure/mgmt/sample/aio/_patch.py +++ b/packages/autorest.python/samples/specification/management/generated/azure/mgmt/sample/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/samples/specification/management/generated/azure/mgmt/sample/aio/operations/_patch.py b/packages/autorest.python/samples/specification/management/generated/azure/mgmt/sample/aio/operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/samples/specification/management/generated/azure/mgmt/sample/aio/operations/_patch.py +++ b/packages/autorest.python/samples/specification/management/generated/azure/mgmt/sample/aio/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/samples/specification/management/generated/azure/mgmt/sample/operations/_patch.py b/packages/autorest.python/samples/specification/management/generated/azure/mgmt/sample/operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/samples/specification/management/generated/azure/mgmt/sample/operations/_patch.py +++ b/packages/autorest.python/samples/specification/management/generated/azure/mgmt/sample/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/samples/specification/management/generated/setup.py b/packages/autorest.python/samples/specification/management/generated/setup.py index 2af2af850d9..bfea5fb2e3f 100644 --- a/packages/autorest.python/samples/specification/management/generated/setup.py +++ b/packages/autorest.python/samples/specification/management/generated/setup.py @@ -8,7 +8,6 @@ from setuptools import setup, find_packages - PACKAGE_NAME = "azure-mgmt-sample" version = "0.1.0" diff --git a/packages/autorest.python/scripts/venvtools.py b/packages/autorest.python/scripts/venvtools.py index 3b9eb69474d..df1388e6252 100644 --- a/packages/autorest.python/scripts/venvtools.py +++ b/packages/autorest.python/scripts/venvtools.py @@ -10,7 +10,6 @@ import sys from pathlib import Path - _ROOT_DIR = Path(__file__).parent.parent diff --git a/packages/autorest.python/setup.py b/packages/autorest.python/setup.py index 45527034857..7247beea66f 100644 --- a/packages/autorest.python/setup.py +++ b/packages/autorest.python/setup.py @@ -12,7 +12,6 @@ from setuptools import setup, find_packages - # Version extraction inspired from 'requests' with open(os.path.join("autorest", "_version.py"), "r") as fd: version = re.search(r'^VERSION\s*=\s*[\'"]([^\'"]*)[\'"]', fd.read(), re.MULTILINE).group(1) diff --git a/packages/autorest.python/test/azure/legacy/AcceptanceTests/asynctests/test_lro.py b/packages/autorest.python/test/azure/legacy/AcceptanceTests/asynctests/test_lro.py index 183605582ef..505505e3704 100644 --- a/packages/autorest.python/test/azure/legacy/AcceptanceTests/asynctests/test_lro.py +++ b/packages/autorest.python/test/azure/legacy/AcceptanceTests/asynctests/test_lro.py @@ -45,7 +45,6 @@ from lro.aio import AutoRestLongRunningOperationTestService from lro.models import * # pylint: disable=W0614 - try: from urlparse import urlparse except ImportError: diff --git a/packages/autorest.python/test/azure/legacy/AcceptanceTests/conftest.py b/packages/autorest.python/test/azure/legacy/AcceptanceTests/conftest.py index 6b2ca89b0c7..b77cbc59999 100644 --- a/packages/autorest.python/test/azure/legacy/AcceptanceTests/conftest.py +++ b/packages/autorest.python/test/azure/legacy/AcceptanceTests/conftest.py @@ -35,7 +35,6 @@ import pytest - cwd = dirname(realpath(__file__)) diff --git a/packages/autorest.python/test/azure/legacy/AcceptanceTests/test_lro.py b/packages/autorest.python/test/azure/legacy/AcceptanceTests/test_lro.py index 2cbb5dda965..08c27eacf32 100644 --- a/packages/autorest.python/test/azure/legacy/AcceptanceTests/test_lro.py +++ b/packages/autorest.python/test/azure/legacy/AcceptanceTests/test_lro.py @@ -44,7 +44,6 @@ from lro import AutoRestLongRunningOperationTestService from lro.models import * # pylint: disable=W0614 - try: from urlparse import urlparse except ImportError: diff --git a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/AzureBodyDuration/bodyduration/_patch.py b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/AzureBodyDuration/bodyduration/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/AzureBodyDuration/bodyduration/_patch.py +++ b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/AzureBodyDuration/bodyduration/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/AzureBodyDuration/bodyduration/aio/_patch.py b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/AzureBodyDuration/bodyduration/aio/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/AzureBodyDuration/bodyduration/aio/_patch.py +++ b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/AzureBodyDuration/bodyduration/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/AzureBodyDuration/bodyduration/aio/operations/_patch.py b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/AzureBodyDuration/bodyduration/aio/operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/AzureBodyDuration/bodyduration/aio/operations/_patch.py +++ b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/AzureBodyDuration/bodyduration/aio/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/AzureBodyDuration/bodyduration/models/_patch.py b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/AzureBodyDuration/bodyduration/models/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/AzureBodyDuration/bodyduration/models/_patch.py +++ b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/AzureBodyDuration/bodyduration/models/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/AzureBodyDuration/bodyduration/operations/_patch.py b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/AzureBodyDuration/bodyduration/operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/AzureBodyDuration/bodyduration/operations/_patch.py +++ b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/AzureBodyDuration/bodyduration/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/AzureBodyDuration/setup.py b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/AzureBodyDuration/setup.py index 3902fbc6006..f721aeacf69 100644 --- a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/AzureBodyDuration/setup.py +++ b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/AzureBodyDuration/setup.py @@ -8,7 +8,6 @@ from setuptools import setup, find_packages - PACKAGE_NAME = "autorestdurationtestservice" version = "0.1.0" diff --git a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/AzureParameterGrouping/azureparametergrouping/_patch.py b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/AzureParameterGrouping/azureparametergrouping/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/AzureParameterGrouping/azureparametergrouping/_patch.py +++ b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/AzureParameterGrouping/azureparametergrouping/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/AzureParameterGrouping/azureparametergrouping/aio/_patch.py b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/AzureParameterGrouping/azureparametergrouping/aio/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/AzureParameterGrouping/azureparametergrouping/aio/_patch.py +++ b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/AzureParameterGrouping/azureparametergrouping/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/AzureParameterGrouping/azureparametergrouping/aio/operations/_patch.py b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/AzureParameterGrouping/azureparametergrouping/aio/operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/AzureParameterGrouping/azureparametergrouping/aio/operations/_patch.py +++ b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/AzureParameterGrouping/azureparametergrouping/aio/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/AzureParameterGrouping/azureparametergrouping/models/_patch.py b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/AzureParameterGrouping/azureparametergrouping/models/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/AzureParameterGrouping/azureparametergrouping/models/_patch.py +++ b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/AzureParameterGrouping/azureparametergrouping/models/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/AzureParameterGrouping/azureparametergrouping/operations/_patch.py b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/AzureParameterGrouping/azureparametergrouping/operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/AzureParameterGrouping/azureparametergrouping/operations/_patch.py +++ b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/AzureParameterGrouping/azureparametergrouping/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/AzureParameterGrouping/setup.py b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/AzureParameterGrouping/setup.py index 03cbb4a0b22..bc6da493da7 100644 --- a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/AzureParameterGrouping/setup.py +++ b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/AzureParameterGrouping/setup.py @@ -8,7 +8,6 @@ from setuptools import setup, find_packages - PACKAGE_NAME = "autorestparametergroupingtestservice" version = "0.1.0" diff --git a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/AzureReport/azurereport/_patch.py b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/AzureReport/azurereport/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/AzureReport/azurereport/_patch.py +++ b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/AzureReport/azurereport/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/AzureReport/azurereport/aio/_patch.py b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/AzureReport/azurereport/aio/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/AzureReport/azurereport/aio/_patch.py +++ b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/AzureReport/azurereport/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/AzureReport/azurereport/aio/operations/_patch.py b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/AzureReport/azurereport/aio/operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/AzureReport/azurereport/aio/operations/_patch.py +++ b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/AzureReport/azurereport/aio/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/AzureReport/azurereport/models/_patch.py b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/AzureReport/azurereport/models/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/AzureReport/azurereport/models/_patch.py +++ b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/AzureReport/azurereport/models/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/AzureReport/azurereport/operations/_patch.py b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/AzureReport/azurereport/operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/AzureReport/azurereport/operations/_patch.py +++ b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/AzureReport/azurereport/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/AzureReport/setup.py b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/AzureReport/setup.py index dd6ab92563d..94e8de7902a 100644 --- a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/AzureReport/setup.py +++ b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/AzureReport/setup.py @@ -8,7 +8,6 @@ from setuptools import setup, find_packages - PACKAGE_NAME = "autorestreportserviceforazure" version = "0.1.0" diff --git a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/AzureSpecials/azurespecialproperties/_patch.py b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/AzureSpecials/azurespecialproperties/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/AzureSpecials/azurespecialproperties/_patch.py +++ b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/AzureSpecials/azurespecialproperties/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/AzureSpecials/azurespecialproperties/aio/_patch.py b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/AzureSpecials/azurespecialproperties/aio/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/AzureSpecials/azurespecialproperties/aio/_patch.py +++ b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/AzureSpecials/azurespecialproperties/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/AzureSpecials/azurespecialproperties/aio/operations/_patch.py b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/AzureSpecials/azurespecialproperties/aio/operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/AzureSpecials/azurespecialproperties/aio/operations/_patch.py +++ b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/AzureSpecials/azurespecialproperties/aio/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/AzureSpecials/azurespecialproperties/models/_patch.py b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/AzureSpecials/azurespecialproperties/models/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/AzureSpecials/azurespecialproperties/models/_patch.py +++ b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/AzureSpecials/azurespecialproperties/models/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/AzureSpecials/azurespecialproperties/operations/_patch.py b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/AzureSpecials/azurespecialproperties/operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/AzureSpecials/azurespecialproperties/operations/_patch.py +++ b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/AzureSpecials/azurespecialproperties/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/AzureSpecials/setup.py b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/AzureSpecials/setup.py index 44e6524347e..5edf72a51fa 100644 --- a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/AzureSpecials/setup.py +++ b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/AzureSpecials/setup.py @@ -8,7 +8,6 @@ from setuptools import setup, find_packages - PACKAGE_NAME = "autorestazurespecialparameterstestclient" version = "0.1.0" diff --git a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/CustomBaseUri/custombaseurl/_patch.py b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/CustomBaseUri/custombaseurl/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/CustomBaseUri/custombaseurl/_patch.py +++ b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/CustomBaseUri/custombaseurl/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/CustomBaseUri/custombaseurl/aio/_patch.py b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/CustomBaseUri/custombaseurl/aio/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/CustomBaseUri/custombaseurl/aio/_patch.py +++ b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/CustomBaseUri/custombaseurl/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/CustomBaseUri/custombaseurl/aio/operations/_patch.py b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/CustomBaseUri/custombaseurl/aio/operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/CustomBaseUri/custombaseurl/aio/operations/_patch.py +++ b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/CustomBaseUri/custombaseurl/aio/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/CustomBaseUri/custombaseurl/models/_patch.py b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/CustomBaseUri/custombaseurl/models/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/CustomBaseUri/custombaseurl/models/_patch.py +++ b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/CustomBaseUri/custombaseurl/models/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/CustomBaseUri/custombaseurl/operations/_patch.py b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/CustomBaseUri/custombaseurl/operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/CustomBaseUri/custombaseurl/operations/_patch.py +++ b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/CustomBaseUri/custombaseurl/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/CustomBaseUri/setup.py b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/CustomBaseUri/setup.py index 1bc312dc472..19c691ad4e5 100644 --- a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/CustomBaseUri/setup.py +++ b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/CustomBaseUri/setup.py @@ -8,7 +8,6 @@ from setuptools import setup, find_packages - PACKAGE_NAME = "autorestparameterizedhosttestclient" version = "0.1.0" diff --git a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/CustomPollerPager/custompollerpager/_patch.py b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/CustomPollerPager/custompollerpager/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/CustomPollerPager/custompollerpager/_patch.py +++ b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/CustomPollerPager/custompollerpager/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/CustomPollerPager/custompollerpager/aio/_patch.py b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/CustomPollerPager/custompollerpager/aio/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/CustomPollerPager/custompollerpager/aio/_patch.py +++ b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/CustomPollerPager/custompollerpager/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/CustomPollerPager/custompollerpager/aio/operations/_patch.py b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/CustomPollerPager/custompollerpager/aio/operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/CustomPollerPager/custompollerpager/aio/operations/_patch.py +++ b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/CustomPollerPager/custompollerpager/aio/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/CustomPollerPager/custompollerpager/models/_patch.py b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/CustomPollerPager/custompollerpager/models/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/CustomPollerPager/custompollerpager/models/_patch.py +++ b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/CustomPollerPager/custompollerpager/models/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/CustomPollerPager/custompollerpager/operations/_patch.py b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/CustomPollerPager/custompollerpager/operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/CustomPollerPager/custompollerpager/operations/_patch.py +++ b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/CustomPollerPager/custompollerpager/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/CustomPollerPager/setup.py b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/CustomPollerPager/setup.py index 56bba347733..a32602c9c42 100644 --- a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/CustomPollerPager/setup.py +++ b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/CustomPollerPager/setup.py @@ -8,7 +8,6 @@ from setuptools import setup, find_packages - PACKAGE_NAME = "custompollerpager" version = "0.1.0" diff --git a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/CustomUrlPaging/custombaseurlpaging/_patch.py b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/CustomUrlPaging/custombaseurlpaging/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/CustomUrlPaging/custombaseurlpaging/_patch.py +++ b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/CustomUrlPaging/custombaseurlpaging/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/CustomUrlPaging/custombaseurlpaging/aio/_patch.py b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/CustomUrlPaging/custombaseurlpaging/aio/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/CustomUrlPaging/custombaseurlpaging/aio/_patch.py +++ b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/CustomUrlPaging/custombaseurlpaging/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/CustomUrlPaging/custombaseurlpaging/aio/operations/_patch.py b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/CustomUrlPaging/custombaseurlpaging/aio/operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/CustomUrlPaging/custombaseurlpaging/aio/operations/_patch.py +++ b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/CustomUrlPaging/custombaseurlpaging/aio/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/CustomUrlPaging/custombaseurlpaging/models/_patch.py b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/CustomUrlPaging/custombaseurlpaging/models/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/CustomUrlPaging/custombaseurlpaging/models/_patch.py +++ b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/CustomUrlPaging/custombaseurlpaging/models/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/CustomUrlPaging/custombaseurlpaging/operations/_patch.py b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/CustomUrlPaging/custombaseurlpaging/operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/CustomUrlPaging/custombaseurlpaging/operations/_patch.py +++ b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/CustomUrlPaging/custombaseurlpaging/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/CustomUrlPaging/setup.py b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/CustomUrlPaging/setup.py index a241b7d4eaa..27ac1b3af38 100644 --- a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/CustomUrlPaging/setup.py +++ b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/CustomUrlPaging/setup.py @@ -8,7 +8,6 @@ from setuptools import setup, find_packages - PACKAGE_NAME = "autorestparameterizedhosttestpagingclient" version = "0.1.0" diff --git a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/Head/head/_patch.py b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/Head/head/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/Head/head/_patch.py +++ b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/Head/head/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/Head/head/aio/_patch.py b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/Head/head/aio/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/Head/head/aio/_patch.py +++ b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/Head/head/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/Head/head/aio/operations/_patch.py b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/Head/head/aio/operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/Head/head/aio/operations/_patch.py +++ b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/Head/head/aio/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/Head/head/operations/_patch.py b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/Head/head/operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/Head/head/operations/_patch.py +++ b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/Head/head/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/Head/setup.py b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/Head/setup.py index f86c4179ad6..1a98eeef7be 100644 --- a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/Head/setup.py +++ b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/Head/setup.py @@ -8,7 +8,6 @@ from setuptools import setup, find_packages - PACKAGE_NAME = "autorestheadtestservice" version = "0.1.0" diff --git a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/HeadExceptions/headexceptions/_patch.py b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/HeadExceptions/headexceptions/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/HeadExceptions/headexceptions/_patch.py +++ b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/HeadExceptions/headexceptions/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/HeadExceptions/headexceptions/aio/_patch.py b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/HeadExceptions/headexceptions/aio/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/HeadExceptions/headexceptions/aio/_patch.py +++ b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/HeadExceptions/headexceptions/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/HeadExceptions/headexceptions/aio/operations/_patch.py b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/HeadExceptions/headexceptions/aio/operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/HeadExceptions/headexceptions/aio/operations/_patch.py +++ b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/HeadExceptions/headexceptions/aio/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/HeadExceptions/headexceptions/operations/_patch.py b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/HeadExceptions/headexceptions/operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/HeadExceptions/headexceptions/operations/_patch.py +++ b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/HeadExceptions/headexceptions/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/HeadExceptions/setup.py b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/HeadExceptions/setup.py index 8082b2c9d94..c4699b1da55 100644 --- a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/HeadExceptions/setup.py +++ b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/HeadExceptions/setup.py @@ -8,7 +8,6 @@ from setuptools import setup, find_packages - PACKAGE_NAME = "autorestheadexceptiontestservice" version = "0.1.0" diff --git a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/HeadWithAzureKeyCredentialPolicy/headwithazurekeycredentialpolicy/_patch.py b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/HeadWithAzureKeyCredentialPolicy/headwithazurekeycredentialpolicy/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/HeadWithAzureKeyCredentialPolicy/headwithazurekeycredentialpolicy/_patch.py +++ b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/HeadWithAzureKeyCredentialPolicy/headwithazurekeycredentialpolicy/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/HeadWithAzureKeyCredentialPolicy/headwithazurekeycredentialpolicy/aio/_patch.py b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/HeadWithAzureKeyCredentialPolicy/headwithazurekeycredentialpolicy/aio/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/HeadWithAzureKeyCredentialPolicy/headwithazurekeycredentialpolicy/aio/_patch.py +++ b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/HeadWithAzureKeyCredentialPolicy/headwithazurekeycredentialpolicy/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/HeadWithAzureKeyCredentialPolicy/headwithazurekeycredentialpolicy/aio/operations/_patch.py b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/HeadWithAzureKeyCredentialPolicy/headwithazurekeycredentialpolicy/aio/operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/HeadWithAzureKeyCredentialPolicy/headwithazurekeycredentialpolicy/aio/operations/_patch.py +++ b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/HeadWithAzureKeyCredentialPolicy/headwithazurekeycredentialpolicy/aio/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/HeadWithAzureKeyCredentialPolicy/headwithazurekeycredentialpolicy/operations/_patch.py b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/HeadWithAzureKeyCredentialPolicy/headwithazurekeycredentialpolicy/operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/HeadWithAzureKeyCredentialPolicy/headwithazurekeycredentialpolicy/operations/_patch.py +++ b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/HeadWithAzureKeyCredentialPolicy/headwithazurekeycredentialpolicy/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/HeadWithAzureKeyCredentialPolicy/setup.py b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/HeadWithAzureKeyCredentialPolicy/setup.py index f86c4179ad6..1a98eeef7be 100644 --- a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/HeadWithAzureKeyCredentialPolicy/setup.py +++ b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/HeadWithAzureKeyCredentialPolicy/setup.py @@ -8,7 +8,6 @@ from setuptools import setup, find_packages - PACKAGE_NAME = "autorestheadtestservice" version = "0.1.0" diff --git a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/Lro/lro/_patch.py b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/Lro/lro/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/Lro/lro/_patch.py +++ b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/Lro/lro/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/Lro/lro/aio/_patch.py b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/Lro/lro/aio/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/Lro/lro/aio/_patch.py +++ b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/Lro/lro/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/Lro/lro/aio/operations/_patch.py b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/Lro/lro/aio/operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/Lro/lro/aio/operations/_patch.py +++ b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/Lro/lro/aio/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/Lro/lro/models/_patch.py b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/Lro/lro/models/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/Lro/lro/models/_patch.py +++ b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/Lro/lro/models/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/Lro/lro/operations/_patch.py b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/Lro/lro/operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/Lro/lro/operations/_patch.py +++ b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/Lro/lro/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/Lro/setup.py b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/Lro/setup.py index 88e5c20f485..10bd1250e06 100644 --- a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/Lro/setup.py +++ b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/Lro/setup.py @@ -8,7 +8,6 @@ from setuptools import setup, find_packages - PACKAGE_NAME = "autorestlongrunningoperationtestservice" version = "0.1.0" diff --git a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/LroWithParameterizedEndpoints/lrowithparameterizedendpoints/_patch.py b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/LroWithParameterizedEndpoints/lrowithparameterizedendpoints/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/LroWithParameterizedEndpoints/lrowithparameterizedendpoints/_patch.py +++ b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/LroWithParameterizedEndpoints/lrowithparameterizedendpoints/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/LroWithParameterizedEndpoints/lrowithparameterizedendpoints/aio/_patch.py b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/LroWithParameterizedEndpoints/lrowithparameterizedendpoints/aio/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/LroWithParameterizedEndpoints/lrowithparameterizedendpoints/aio/_patch.py +++ b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/LroWithParameterizedEndpoints/lrowithparameterizedendpoints/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/LroWithParameterizedEndpoints/lrowithparameterizedendpoints/aio/operations/_patch.py b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/LroWithParameterizedEndpoints/lrowithparameterizedendpoints/aio/operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/LroWithParameterizedEndpoints/lrowithparameterizedendpoints/aio/operations/_patch.py +++ b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/LroWithParameterizedEndpoints/lrowithparameterizedendpoints/aio/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/LroWithParameterizedEndpoints/lrowithparameterizedendpoints/models/_patch.py b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/LroWithParameterizedEndpoints/lrowithparameterizedendpoints/models/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/LroWithParameterizedEndpoints/lrowithparameterizedendpoints/models/_patch.py +++ b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/LroWithParameterizedEndpoints/lrowithparameterizedendpoints/models/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/LroWithParameterizedEndpoints/lrowithparameterizedendpoints/operations/_patch.py b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/LroWithParameterizedEndpoints/lrowithparameterizedendpoints/operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/LroWithParameterizedEndpoints/lrowithparameterizedendpoints/operations/_patch.py +++ b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/LroWithParameterizedEndpoints/lrowithparameterizedendpoints/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/LroWithParameterizedEndpoints/setup.py b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/LroWithParameterizedEndpoints/setup.py index ce174315da9..08029b7d89a 100644 --- a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/LroWithParameterizedEndpoints/setup.py +++ b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/LroWithParameterizedEndpoints/setup.py @@ -8,7 +8,6 @@ from setuptools import setup, find_packages - PACKAGE_NAME = "lrowithparamaterizedendpoints" version = "0.1.0" diff --git a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/MixedApiVersion/mixedapiversion/_patch.py b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/MixedApiVersion/mixedapiversion/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/MixedApiVersion/mixedapiversion/_patch.py +++ b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/MixedApiVersion/mixedapiversion/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/MixedApiVersion/mixedapiversion/aio/_patch.py b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/MixedApiVersion/mixedapiversion/aio/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/MixedApiVersion/mixedapiversion/aio/_patch.py +++ b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/MixedApiVersion/mixedapiversion/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/MixedApiVersion/mixedapiversion/aio/operations/_patch.py b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/MixedApiVersion/mixedapiversion/aio/operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/MixedApiVersion/mixedapiversion/aio/operations/_patch.py +++ b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/MixedApiVersion/mixedapiversion/aio/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/MixedApiVersion/mixedapiversion/models/_patch.py b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/MixedApiVersion/mixedapiversion/models/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/MixedApiVersion/mixedapiversion/models/_patch.py +++ b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/MixedApiVersion/mixedapiversion/models/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/MixedApiVersion/mixedapiversion/operations/_patch.py b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/MixedApiVersion/mixedapiversion/operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/MixedApiVersion/mixedapiversion/operations/_patch.py +++ b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/MixedApiVersion/mixedapiversion/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/MixedApiVersion/setup.py b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/MixedApiVersion/setup.py index 40652aab197..869e2088be1 100644 --- a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/MixedApiVersion/setup.py +++ b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/MixedApiVersion/setup.py @@ -8,7 +8,6 @@ from setuptools import setup, find_packages - PACKAGE_NAME = "mixedapiversion" version = "1.0.0b1" diff --git a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/PackageModeBatch/azure/packagemode/batch/head/_patch.py b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/PackageModeBatch/azure/packagemode/batch/head/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/PackageModeBatch/azure/packagemode/batch/head/_patch.py +++ b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/PackageModeBatch/azure/packagemode/batch/head/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/PackageModeBatch/azure/packagemode/batch/head/aio/_patch.py b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/PackageModeBatch/azure/packagemode/batch/head/aio/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/PackageModeBatch/azure/packagemode/batch/head/aio/_patch.py +++ b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/PackageModeBatch/azure/packagemode/batch/head/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/PackageModeBatch/azure/packagemode/batch/head/aio/operations/_patch.py b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/PackageModeBatch/azure/packagemode/batch/head/aio/operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/PackageModeBatch/azure/packagemode/batch/head/aio/operations/_patch.py +++ b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/PackageModeBatch/azure/packagemode/batch/head/aio/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/PackageModeBatch/azure/packagemode/batch/head/operations/_patch.py b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/PackageModeBatch/azure/packagemode/batch/head/operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/PackageModeBatch/azure/packagemode/batch/head/operations/_patch.py +++ b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/PackageModeBatch/azure/packagemode/batch/head/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/PackageModeBatch/azure/packagemode/batch/paging/_patch.py b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/PackageModeBatch/azure/packagemode/batch/paging/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/PackageModeBatch/azure/packagemode/batch/paging/_patch.py +++ b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/PackageModeBatch/azure/packagemode/batch/paging/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/PackageModeBatch/azure/packagemode/batch/paging/aio/_patch.py b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/PackageModeBatch/azure/packagemode/batch/paging/aio/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/PackageModeBatch/azure/packagemode/batch/paging/aio/_patch.py +++ b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/PackageModeBatch/azure/packagemode/batch/paging/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/PackageModeBatch/azure/packagemode/batch/paging/aio/operations/_patch.py b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/PackageModeBatch/azure/packagemode/batch/paging/aio/operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/PackageModeBatch/azure/packagemode/batch/paging/aio/operations/_patch.py +++ b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/PackageModeBatch/azure/packagemode/batch/paging/aio/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/PackageModeBatch/azure/packagemode/batch/paging/models/_patch.py b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/PackageModeBatch/azure/packagemode/batch/paging/models/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/PackageModeBatch/azure/packagemode/batch/paging/models/_patch.py +++ b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/PackageModeBatch/azure/packagemode/batch/paging/models/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/PackageModeBatch/azure/packagemode/batch/paging/operations/_patch.py b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/PackageModeBatch/azure/packagemode/batch/paging/operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/PackageModeBatch/azure/packagemode/batch/paging/operations/_patch.py +++ b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/PackageModeBatch/azure/packagemode/batch/paging/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/PackageModeCustomize/azure/packagemode/customize/_patch.py b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/PackageModeCustomize/azure/packagemode/customize/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/PackageModeCustomize/azure/packagemode/customize/_patch.py +++ b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/PackageModeCustomize/azure/packagemode/customize/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/PackageModeCustomize/azure/packagemode/customize/aio/_patch.py b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/PackageModeCustomize/azure/packagemode/customize/aio/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/PackageModeCustomize/azure/packagemode/customize/aio/_patch.py +++ b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/PackageModeCustomize/azure/packagemode/customize/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/PackageModeCustomize/azure/packagemode/customize/aio/operations/_patch.py b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/PackageModeCustomize/azure/packagemode/customize/aio/operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/PackageModeCustomize/azure/packagemode/customize/aio/operations/_patch.py +++ b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/PackageModeCustomize/azure/packagemode/customize/aio/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/PackageModeCustomize/azure/packagemode/customize/operations/_patch.py b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/PackageModeCustomize/azure/packagemode/customize/operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/PackageModeCustomize/azure/packagemode/customize/operations/_patch.py +++ b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/PackageModeCustomize/azure/packagemode/customize/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/PackageModeCustomize/setup.py b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/PackageModeCustomize/setup.py index cb8f06f5f8b..8f76f6d604d 100644 --- a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/PackageModeCustomize/setup.py +++ b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/PackageModeCustomize/setup.py @@ -11,7 +11,6 @@ import re from setuptools import setup, find_packages - PACKAGE_NAME = "azure-packagemode-customize" PACKAGE_PPRINT_NAME = "Azure Customized Package Mode" diff --git a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/PackageModeDataPlane/azure/packagemode/dataplane/_patch.py b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/PackageModeDataPlane/azure/packagemode/dataplane/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/PackageModeDataPlane/azure/packagemode/dataplane/_patch.py +++ b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/PackageModeDataPlane/azure/packagemode/dataplane/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/PackageModeDataPlane/azure/packagemode/dataplane/aio/_patch.py b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/PackageModeDataPlane/azure/packagemode/dataplane/aio/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/PackageModeDataPlane/azure/packagemode/dataplane/aio/_patch.py +++ b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/PackageModeDataPlane/azure/packagemode/dataplane/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/PackageModeDataPlane/azure/packagemode/dataplane/aio/operations/_patch.py b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/PackageModeDataPlane/azure/packagemode/dataplane/aio/operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/PackageModeDataPlane/azure/packagemode/dataplane/aio/operations/_patch.py +++ b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/PackageModeDataPlane/azure/packagemode/dataplane/aio/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/PackageModeDataPlane/azure/packagemode/dataplane/operations/_patch.py b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/PackageModeDataPlane/azure/packagemode/dataplane/operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/PackageModeDataPlane/azure/packagemode/dataplane/operations/_patch.py +++ b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/PackageModeDataPlane/azure/packagemode/dataplane/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/PackageModeMgmtPlane/azure/package/mode/_patch.py b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/PackageModeMgmtPlane/azure/package/mode/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/PackageModeMgmtPlane/azure/package/mode/_patch.py +++ b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/PackageModeMgmtPlane/azure/package/mode/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/PackageModeMgmtPlane/azure/package/mode/aio/_patch.py b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/PackageModeMgmtPlane/azure/package/mode/aio/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/PackageModeMgmtPlane/azure/package/mode/aio/_patch.py +++ b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/PackageModeMgmtPlane/azure/package/mode/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/PackageModeMgmtPlane/azure/package/mode/aio/operations/_patch.py b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/PackageModeMgmtPlane/azure/package/mode/aio/operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/PackageModeMgmtPlane/azure/package/mode/aio/operations/_patch.py +++ b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/PackageModeMgmtPlane/azure/package/mode/aio/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/PackageModeMgmtPlane/azure/package/mode/operations/_patch.py b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/PackageModeMgmtPlane/azure/package/mode/operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/PackageModeMgmtPlane/azure/package/mode/operations/_patch.py +++ b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/PackageModeMgmtPlane/azure/package/mode/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/Paging/paging/_patch.py b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/Paging/paging/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/Paging/paging/_patch.py +++ b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/Paging/paging/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/Paging/paging/aio/_patch.py b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/Paging/paging/aio/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/Paging/paging/aio/_patch.py +++ b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/Paging/paging/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/Paging/paging/aio/operations/_patch.py b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/Paging/paging/aio/operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/Paging/paging/aio/operations/_patch.py +++ b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/Paging/paging/aio/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/Paging/paging/models/_patch.py b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/Paging/paging/models/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/Paging/paging/models/_patch.py +++ b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/Paging/paging/models/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/Paging/paging/operations/_patch.py b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/Paging/paging/operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/Paging/paging/operations/_patch.py +++ b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/Paging/paging/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/Paging/setup.py b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/Paging/setup.py index b44a4d8eef6..e3824b83d01 100644 --- a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/Paging/setup.py +++ b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/Paging/setup.py @@ -8,7 +8,6 @@ from setuptools import setup, find_packages - PACKAGE_NAME = "autorestpagingtestservice" version = "0.1.0" diff --git a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/SecurityAadSwagger/securityaadswagger/_patch.py b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/SecurityAadSwagger/securityaadswagger/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/SecurityAadSwagger/securityaadswagger/_patch.py +++ b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/SecurityAadSwagger/securityaadswagger/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/SecurityAadSwagger/securityaadswagger/aio/_patch.py b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/SecurityAadSwagger/securityaadswagger/aio/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/SecurityAadSwagger/securityaadswagger/aio/_patch.py +++ b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/SecurityAadSwagger/securityaadswagger/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/SecurityAadSwagger/securityaadswagger/aio/operations/_patch.py b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/SecurityAadSwagger/securityaadswagger/aio/operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/SecurityAadSwagger/securityaadswagger/aio/operations/_patch.py +++ b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/SecurityAadSwagger/securityaadswagger/aio/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/SecurityAadSwagger/securityaadswagger/operations/_patch.py b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/SecurityAadSwagger/securityaadswagger/operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/SecurityAadSwagger/securityaadswagger/operations/_patch.py +++ b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/SecurityAadSwagger/securityaadswagger/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/SecurityAadSwagger/setup.py b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/SecurityAadSwagger/setup.py index 15cebfde20f..ba732b256f8 100644 --- a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/SecurityAadSwagger/setup.py +++ b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/SecurityAadSwagger/setup.py @@ -8,7 +8,6 @@ from setuptools import setup, find_packages - PACKAGE_NAME = "autorestsecurityaad" version = "0.1.0" diff --git a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/SecurityKeySwagger/securitykeyswagger/_patch.py b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/SecurityKeySwagger/securitykeyswagger/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/SecurityKeySwagger/securitykeyswagger/_patch.py +++ b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/SecurityKeySwagger/securitykeyswagger/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/SecurityKeySwagger/securitykeyswagger/aio/_patch.py b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/SecurityKeySwagger/securitykeyswagger/aio/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/SecurityKeySwagger/securitykeyswagger/aio/_patch.py +++ b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/SecurityKeySwagger/securitykeyswagger/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/SecurityKeySwagger/securitykeyswagger/aio/operations/_patch.py b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/SecurityKeySwagger/securitykeyswagger/aio/operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/SecurityKeySwagger/securitykeyswagger/aio/operations/_patch.py +++ b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/SecurityKeySwagger/securitykeyswagger/aio/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/SecurityKeySwagger/securitykeyswagger/operations/_patch.py b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/SecurityKeySwagger/securitykeyswagger/operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/SecurityKeySwagger/securitykeyswagger/operations/_patch.py +++ b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/SecurityKeySwagger/securitykeyswagger/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/SecurityKeySwagger/setup.py b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/SecurityKeySwagger/setup.py index de28e024039..357945102bc 100644 --- a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/SecurityKeySwagger/setup.py +++ b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/SecurityKeySwagger/setup.py @@ -8,7 +8,6 @@ from setuptools import setup, find_packages - PACKAGE_NAME = "autorestsecuritykey" version = "0.1.0" diff --git a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/StorageManagementClient/setup.py b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/StorageManagementClient/setup.py index 11e5dc47153..f84268cd2ad 100644 --- a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/StorageManagementClient/setup.py +++ b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/StorageManagementClient/setup.py @@ -8,7 +8,6 @@ from setuptools import setup, find_packages - PACKAGE_NAME = "storagemanagementclient" version = "0.1.0" diff --git a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/StorageManagementClient/storage/_patch.py b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/StorageManagementClient/storage/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/StorageManagementClient/storage/_patch.py +++ b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/StorageManagementClient/storage/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/StorageManagementClient/storage/aio/_patch.py b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/StorageManagementClient/storage/aio/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/StorageManagementClient/storage/aio/_patch.py +++ b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/StorageManagementClient/storage/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/StorageManagementClient/storage/aio/operations/_patch.py b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/StorageManagementClient/storage/aio/operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/StorageManagementClient/storage/aio/operations/_patch.py +++ b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/StorageManagementClient/storage/aio/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/StorageManagementClient/storage/models/_patch.py b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/StorageManagementClient/storage/models/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/StorageManagementClient/storage/models/_patch.py +++ b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/StorageManagementClient/storage/models/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/StorageManagementClient/storage/operations/_patch.py b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/StorageManagementClient/storage/operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/StorageManagementClient/storage/operations/_patch.py +++ b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/StorageManagementClient/storage/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/SubscriptionIdApiVersion/setup.py b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/SubscriptionIdApiVersion/setup.py index b7bf4746661..6bc3274fa70 100644 --- a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/SubscriptionIdApiVersion/setup.py +++ b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/SubscriptionIdApiVersion/setup.py @@ -8,7 +8,6 @@ from setuptools import setup, find_packages - PACKAGE_NAME = "microsoftazuretesturl" version = "0.1.0" diff --git a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/SubscriptionIdApiVersion/subscriptionidapiversion/_patch.py b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/SubscriptionIdApiVersion/subscriptionidapiversion/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/SubscriptionIdApiVersion/subscriptionidapiversion/_patch.py +++ b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/SubscriptionIdApiVersion/subscriptionidapiversion/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/SubscriptionIdApiVersion/subscriptionidapiversion/aio/_patch.py b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/SubscriptionIdApiVersion/subscriptionidapiversion/aio/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/SubscriptionIdApiVersion/subscriptionidapiversion/aio/_patch.py +++ b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/SubscriptionIdApiVersion/subscriptionidapiversion/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/SubscriptionIdApiVersion/subscriptionidapiversion/aio/operations/_patch.py b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/SubscriptionIdApiVersion/subscriptionidapiversion/aio/operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/SubscriptionIdApiVersion/subscriptionidapiversion/aio/operations/_patch.py +++ b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/SubscriptionIdApiVersion/subscriptionidapiversion/aio/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/SubscriptionIdApiVersion/subscriptionidapiversion/models/_patch.py b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/SubscriptionIdApiVersion/subscriptionidapiversion/models/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/SubscriptionIdApiVersion/subscriptionidapiversion/models/_patch.py +++ b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/SubscriptionIdApiVersion/subscriptionidapiversion/models/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/SubscriptionIdApiVersion/subscriptionidapiversion/operations/_patch.py b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/SubscriptionIdApiVersion/subscriptionidapiversion/operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/SubscriptionIdApiVersion/subscriptionidapiversion/operations/_patch.py +++ b/packages/autorest.python/test/azure/legacy/Expected/AcceptanceTests/SubscriptionIdApiVersion/subscriptionidapiversion/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/legacy/specification/packagemodecustomize/template/setup.py.jinja2 b/packages/autorest.python/test/azure/legacy/specification/packagemodecustomize/template/setup.py.jinja2 index 88b7d90d442..3d792eedbeb 100644 --- a/packages/autorest.python/test/azure/legacy/specification/packagemodecustomize/template/setup.py.jinja2 +++ b/packages/autorest.python/test/azure/legacy/specification/packagemodecustomize/template/setup.py.jinja2 @@ -11,7 +11,6 @@ import os import re from setuptools import setup, find_packages - PACKAGE_NAME = "azure-packagemode-customize" PACKAGE_PPRINT_NAME = "Azure Customized Package Mode" diff --git a/packages/autorest.python/test/azure/version-tolerant/AcceptanceTests/asynctests/test_lro.py b/packages/autorest.python/test/azure/version-tolerant/AcceptanceTests/asynctests/test_lro.py index 7443b397431..59c3a7d49d3 100644 --- a/packages/autorest.python/test/azure/version-tolerant/AcceptanceTests/asynctests/test_lro.py +++ b/packages/autorest.python/test/azure/version-tolerant/AcceptanceTests/asynctests/test_lro.py @@ -34,7 +34,6 @@ from lroversiontolerant.aio import AutoRestLongRunningOperationTestService - try: from urlparse import urlparse except ImportError: diff --git a/packages/autorest.python/test/azure/version-tolerant/AcceptanceTests/conftest.py b/packages/autorest.python/test/azure/version-tolerant/AcceptanceTests/conftest.py index 6b2ca89b0c7..b77cbc59999 100644 --- a/packages/autorest.python/test/azure/version-tolerant/AcceptanceTests/conftest.py +++ b/packages/autorest.python/test/azure/version-tolerant/AcceptanceTests/conftest.py @@ -35,7 +35,6 @@ import pytest - cwd = dirname(realpath(__file__)) diff --git a/packages/autorest.python/test/azure/version-tolerant/AcceptanceTests/test_lro.py b/packages/autorest.python/test/azure/version-tolerant/AcceptanceTests/test_lro.py index b91af61c156..4b30b1dbd87 100644 --- a/packages/autorest.python/test/azure/version-tolerant/AcceptanceTests/test_lro.py +++ b/packages/autorest.python/test/azure/version-tolerant/AcceptanceTests/test_lro.py @@ -32,7 +32,6 @@ from lroversiontolerant import AutoRestLongRunningOperationTestService - try: from urlparse import urlparse except ImportError: diff --git a/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/AzureBodyDurationVersionTolerant/bodydurationversiontolerant/_patch.py b/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/AzureBodyDurationVersionTolerant/bodydurationversiontolerant/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/AzureBodyDurationVersionTolerant/bodydurationversiontolerant/_patch.py +++ b/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/AzureBodyDurationVersionTolerant/bodydurationversiontolerant/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/AzureBodyDurationVersionTolerant/bodydurationversiontolerant/aio/_patch.py b/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/AzureBodyDurationVersionTolerant/bodydurationversiontolerant/aio/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/AzureBodyDurationVersionTolerant/bodydurationversiontolerant/aio/_patch.py +++ b/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/AzureBodyDurationVersionTolerant/bodydurationversiontolerant/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/AzureBodyDurationVersionTolerant/bodydurationversiontolerant/aio/operations/_patch.py b/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/AzureBodyDurationVersionTolerant/bodydurationversiontolerant/aio/operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/AzureBodyDurationVersionTolerant/bodydurationversiontolerant/aio/operations/_patch.py +++ b/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/AzureBodyDurationVersionTolerant/bodydurationversiontolerant/aio/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/AzureBodyDurationVersionTolerant/bodydurationversiontolerant/operations/_patch.py b/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/AzureBodyDurationVersionTolerant/bodydurationversiontolerant/operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/AzureBodyDurationVersionTolerant/bodydurationversiontolerant/operations/_patch.py +++ b/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/AzureBodyDurationVersionTolerant/bodydurationversiontolerant/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/AzureBodyDurationVersionTolerant/setup.py b/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/AzureBodyDurationVersionTolerant/setup.py index 3902fbc6006..f721aeacf69 100644 --- a/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/AzureBodyDurationVersionTolerant/setup.py +++ b/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/AzureBodyDurationVersionTolerant/setup.py @@ -8,7 +8,6 @@ from setuptools import setup, find_packages - PACKAGE_NAME = "autorestdurationtestservice" version = "0.1.0" diff --git a/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/AzureParameterGroupingVersionTolerant/azureparametergroupingversiontolerant/_patch.py b/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/AzureParameterGroupingVersionTolerant/azureparametergroupingversiontolerant/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/AzureParameterGroupingVersionTolerant/azureparametergroupingversiontolerant/_patch.py +++ b/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/AzureParameterGroupingVersionTolerant/azureparametergroupingversiontolerant/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/AzureParameterGroupingVersionTolerant/azureparametergroupingversiontolerant/aio/_patch.py b/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/AzureParameterGroupingVersionTolerant/azureparametergroupingversiontolerant/aio/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/AzureParameterGroupingVersionTolerant/azureparametergroupingversiontolerant/aio/_patch.py +++ b/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/AzureParameterGroupingVersionTolerant/azureparametergroupingversiontolerant/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/AzureParameterGroupingVersionTolerant/azureparametergroupingversiontolerant/aio/operations/_patch.py b/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/AzureParameterGroupingVersionTolerant/azureparametergroupingversiontolerant/aio/operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/AzureParameterGroupingVersionTolerant/azureparametergroupingversiontolerant/aio/operations/_patch.py +++ b/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/AzureParameterGroupingVersionTolerant/azureparametergroupingversiontolerant/aio/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/AzureParameterGroupingVersionTolerant/azureparametergroupingversiontolerant/operations/_patch.py b/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/AzureParameterGroupingVersionTolerant/azureparametergroupingversiontolerant/operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/AzureParameterGroupingVersionTolerant/azureparametergroupingversiontolerant/operations/_patch.py +++ b/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/AzureParameterGroupingVersionTolerant/azureparametergroupingversiontolerant/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/AzureParameterGroupingVersionTolerant/setup.py b/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/AzureParameterGroupingVersionTolerant/setup.py index c6ae6f64cef..e15ba80b9ca 100644 --- a/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/AzureParameterGroupingVersionTolerant/setup.py +++ b/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/AzureParameterGroupingVersionTolerant/setup.py @@ -8,7 +8,6 @@ from setuptools import setup, find_packages - PACKAGE_NAME = "autorestparametergroupingtestservice" version = "0.1.0" diff --git a/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/AzureReportVersionTolerant/azurereportversiontolerant/_operations/_patch.py b/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/AzureReportVersionTolerant/azurereportversiontolerant/_operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/AzureReportVersionTolerant/azurereportversiontolerant/_operations/_patch.py +++ b/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/AzureReportVersionTolerant/azurereportversiontolerant/_operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/AzureReportVersionTolerant/azurereportversiontolerant/_patch.py b/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/AzureReportVersionTolerant/azurereportversiontolerant/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/AzureReportVersionTolerant/azurereportversiontolerant/_patch.py +++ b/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/AzureReportVersionTolerant/azurereportversiontolerant/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/AzureReportVersionTolerant/azurereportversiontolerant/aio/_operations/_patch.py b/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/AzureReportVersionTolerant/azurereportversiontolerant/aio/_operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/AzureReportVersionTolerant/azurereportversiontolerant/aio/_operations/_patch.py +++ b/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/AzureReportVersionTolerant/azurereportversiontolerant/aio/_operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/AzureReportVersionTolerant/azurereportversiontolerant/aio/_patch.py b/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/AzureReportVersionTolerant/azurereportversiontolerant/aio/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/AzureReportVersionTolerant/azurereportversiontolerant/aio/_patch.py +++ b/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/AzureReportVersionTolerant/azurereportversiontolerant/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/AzureReportVersionTolerant/setup.py b/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/AzureReportVersionTolerant/setup.py index dd6ab92563d..94e8de7902a 100644 --- a/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/AzureReportVersionTolerant/setup.py +++ b/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/AzureReportVersionTolerant/setup.py @@ -8,7 +8,6 @@ from setuptools import setup, find_packages - PACKAGE_NAME = "autorestreportserviceforazure" version = "0.1.0" diff --git a/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/AzureSpecialsVersionTolerant/azurespecialpropertiesversiontolerant/_patch.py b/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/AzureSpecialsVersionTolerant/azurespecialpropertiesversiontolerant/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/AzureSpecialsVersionTolerant/azurespecialpropertiesversiontolerant/_patch.py +++ b/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/AzureSpecialsVersionTolerant/azurespecialpropertiesversiontolerant/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/AzureSpecialsVersionTolerant/azurespecialpropertiesversiontolerant/aio/_patch.py b/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/AzureSpecialsVersionTolerant/azurespecialpropertiesversiontolerant/aio/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/AzureSpecialsVersionTolerant/azurespecialpropertiesversiontolerant/aio/_patch.py +++ b/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/AzureSpecialsVersionTolerant/azurespecialpropertiesversiontolerant/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/AzureSpecialsVersionTolerant/azurespecialpropertiesversiontolerant/aio/operations/_patch.py b/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/AzureSpecialsVersionTolerant/azurespecialpropertiesversiontolerant/aio/operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/AzureSpecialsVersionTolerant/azurespecialpropertiesversiontolerant/aio/operations/_patch.py +++ b/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/AzureSpecialsVersionTolerant/azurespecialpropertiesversiontolerant/aio/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/AzureSpecialsVersionTolerant/azurespecialpropertiesversiontolerant/operations/_patch.py b/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/AzureSpecialsVersionTolerant/azurespecialpropertiesversiontolerant/operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/AzureSpecialsVersionTolerant/azurespecialpropertiesversiontolerant/operations/_patch.py +++ b/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/AzureSpecialsVersionTolerant/azurespecialpropertiesversiontolerant/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/AzureSpecialsVersionTolerant/setup.py b/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/AzureSpecialsVersionTolerant/setup.py index 9784c2389f1..62902b58208 100644 --- a/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/AzureSpecialsVersionTolerant/setup.py +++ b/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/AzureSpecialsVersionTolerant/setup.py @@ -8,7 +8,6 @@ from setuptools import setup, find_packages - PACKAGE_NAME = "autorestazurespecialparameterstestclient" version = "0.1.0" diff --git a/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/CustomBaseUriVersionTolerant/custombaseurlversiontolerant/_patch.py b/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/CustomBaseUriVersionTolerant/custombaseurlversiontolerant/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/CustomBaseUriVersionTolerant/custombaseurlversiontolerant/_patch.py +++ b/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/CustomBaseUriVersionTolerant/custombaseurlversiontolerant/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/CustomBaseUriVersionTolerant/custombaseurlversiontolerant/aio/_patch.py b/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/CustomBaseUriVersionTolerant/custombaseurlversiontolerant/aio/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/CustomBaseUriVersionTolerant/custombaseurlversiontolerant/aio/_patch.py +++ b/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/CustomBaseUriVersionTolerant/custombaseurlversiontolerant/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/CustomBaseUriVersionTolerant/custombaseurlversiontolerant/aio/operations/_patch.py b/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/CustomBaseUriVersionTolerant/custombaseurlversiontolerant/aio/operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/CustomBaseUriVersionTolerant/custombaseurlversiontolerant/aio/operations/_patch.py +++ b/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/CustomBaseUriVersionTolerant/custombaseurlversiontolerant/aio/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/CustomBaseUriVersionTolerant/custombaseurlversiontolerant/operations/_patch.py b/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/CustomBaseUriVersionTolerant/custombaseurlversiontolerant/operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/CustomBaseUriVersionTolerant/custombaseurlversiontolerant/operations/_patch.py +++ b/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/CustomBaseUriVersionTolerant/custombaseurlversiontolerant/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/CustomBaseUriVersionTolerant/setup.py b/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/CustomBaseUriVersionTolerant/setup.py index dbe06a5c65e..69ce6d162b0 100644 --- a/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/CustomBaseUriVersionTolerant/setup.py +++ b/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/CustomBaseUriVersionTolerant/setup.py @@ -8,7 +8,6 @@ from setuptools import setup, find_packages - PACKAGE_NAME = "autorestparameterizedhosttestclient" version = "0.1.0" diff --git a/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/CustomPollerPagerVersionTolerant/custompollerpagerversiontolerant/_patch.py b/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/CustomPollerPagerVersionTolerant/custompollerpagerversiontolerant/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/CustomPollerPagerVersionTolerant/custompollerpagerversiontolerant/_patch.py +++ b/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/CustomPollerPagerVersionTolerant/custompollerpagerversiontolerant/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/CustomPollerPagerVersionTolerant/custompollerpagerversiontolerant/aio/_patch.py b/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/CustomPollerPagerVersionTolerant/custompollerpagerversiontolerant/aio/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/CustomPollerPagerVersionTolerant/custompollerpagerversiontolerant/aio/_patch.py +++ b/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/CustomPollerPagerVersionTolerant/custompollerpagerversiontolerant/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/CustomPollerPagerVersionTolerant/custompollerpagerversiontolerant/aio/operations/_patch.py b/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/CustomPollerPagerVersionTolerant/custompollerpagerversiontolerant/aio/operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/CustomPollerPagerVersionTolerant/custompollerpagerversiontolerant/aio/operations/_patch.py +++ b/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/CustomPollerPagerVersionTolerant/custompollerpagerversiontolerant/aio/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/CustomPollerPagerVersionTolerant/custompollerpagerversiontolerant/operations/_patch.py b/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/CustomPollerPagerVersionTolerant/custompollerpagerversiontolerant/operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/CustomPollerPagerVersionTolerant/custompollerpagerversiontolerant/operations/_patch.py +++ b/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/CustomPollerPagerVersionTolerant/custompollerpagerversiontolerant/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/CustomPollerPagerVersionTolerant/setup.py b/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/CustomPollerPagerVersionTolerant/setup.py index 210899c7d69..84bc32b8e48 100644 --- a/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/CustomPollerPagerVersionTolerant/setup.py +++ b/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/CustomPollerPagerVersionTolerant/setup.py @@ -8,7 +8,6 @@ from setuptools import setup, find_packages - PACKAGE_NAME = "custompollerpagerversiontolerant" version = "0.1.0" diff --git a/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/CustomUrlPagingVersionTolerant/custombaseurlpagingversiontolerant/_patch.py b/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/CustomUrlPagingVersionTolerant/custombaseurlpagingversiontolerant/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/CustomUrlPagingVersionTolerant/custombaseurlpagingversiontolerant/_patch.py +++ b/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/CustomUrlPagingVersionTolerant/custombaseurlpagingversiontolerant/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/CustomUrlPagingVersionTolerant/custombaseurlpagingversiontolerant/aio/_patch.py b/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/CustomUrlPagingVersionTolerant/custombaseurlpagingversiontolerant/aio/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/CustomUrlPagingVersionTolerant/custombaseurlpagingversiontolerant/aio/_patch.py +++ b/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/CustomUrlPagingVersionTolerant/custombaseurlpagingversiontolerant/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/CustomUrlPagingVersionTolerant/custombaseurlpagingversiontolerant/aio/operations/_patch.py b/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/CustomUrlPagingVersionTolerant/custombaseurlpagingversiontolerant/aio/operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/CustomUrlPagingVersionTolerant/custombaseurlpagingversiontolerant/aio/operations/_patch.py +++ b/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/CustomUrlPagingVersionTolerant/custombaseurlpagingversiontolerant/aio/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/CustomUrlPagingVersionTolerant/custombaseurlpagingversiontolerant/operations/_patch.py b/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/CustomUrlPagingVersionTolerant/custombaseurlpagingversiontolerant/operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/CustomUrlPagingVersionTolerant/custombaseurlpagingversiontolerant/operations/_patch.py +++ b/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/CustomUrlPagingVersionTolerant/custombaseurlpagingversiontolerant/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/CustomUrlPagingVersionTolerant/setup.py b/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/CustomUrlPagingVersionTolerant/setup.py index a241b7d4eaa..27ac1b3af38 100644 --- a/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/CustomUrlPagingVersionTolerant/setup.py +++ b/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/CustomUrlPagingVersionTolerant/setup.py @@ -8,7 +8,6 @@ from setuptools import setup, find_packages - PACKAGE_NAME = "autorestparameterizedhosttestpagingclient" version = "0.1.0" diff --git a/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/HeadExceptionsVersionTolerant/headexceptionsversiontolerant/_patch.py b/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/HeadExceptionsVersionTolerant/headexceptionsversiontolerant/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/HeadExceptionsVersionTolerant/headexceptionsversiontolerant/_patch.py +++ b/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/HeadExceptionsVersionTolerant/headexceptionsversiontolerant/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/HeadExceptionsVersionTolerant/headexceptionsversiontolerant/aio/_patch.py b/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/HeadExceptionsVersionTolerant/headexceptionsversiontolerant/aio/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/HeadExceptionsVersionTolerant/headexceptionsversiontolerant/aio/_patch.py +++ b/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/HeadExceptionsVersionTolerant/headexceptionsversiontolerant/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/HeadExceptionsVersionTolerant/headexceptionsversiontolerant/aio/operations/_patch.py b/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/HeadExceptionsVersionTolerant/headexceptionsversiontolerant/aio/operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/HeadExceptionsVersionTolerant/headexceptionsversiontolerant/aio/operations/_patch.py +++ b/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/HeadExceptionsVersionTolerant/headexceptionsversiontolerant/aio/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/HeadExceptionsVersionTolerant/headexceptionsversiontolerant/operations/_patch.py b/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/HeadExceptionsVersionTolerant/headexceptionsversiontolerant/operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/HeadExceptionsVersionTolerant/headexceptionsversiontolerant/operations/_patch.py +++ b/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/HeadExceptionsVersionTolerant/headexceptionsversiontolerant/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/HeadExceptionsVersionTolerant/setup.py b/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/HeadExceptionsVersionTolerant/setup.py index 8082b2c9d94..c4699b1da55 100644 --- a/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/HeadExceptionsVersionTolerant/setup.py +++ b/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/HeadExceptionsVersionTolerant/setup.py @@ -8,7 +8,6 @@ from setuptools import setup, find_packages - PACKAGE_NAME = "autorestheadexceptiontestservice" version = "0.1.0" diff --git a/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/HeadVersionTolerant/headversiontolerant/_patch.py b/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/HeadVersionTolerant/headversiontolerant/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/HeadVersionTolerant/headversiontolerant/_patch.py +++ b/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/HeadVersionTolerant/headversiontolerant/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/HeadVersionTolerant/headversiontolerant/aio/_patch.py b/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/HeadVersionTolerant/headversiontolerant/aio/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/HeadVersionTolerant/headversiontolerant/aio/_patch.py +++ b/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/HeadVersionTolerant/headversiontolerant/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/HeadVersionTolerant/headversiontolerant/aio/operations/_patch.py b/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/HeadVersionTolerant/headversiontolerant/aio/operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/HeadVersionTolerant/headversiontolerant/aio/operations/_patch.py +++ b/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/HeadVersionTolerant/headversiontolerant/aio/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/HeadVersionTolerant/headversiontolerant/operations/_patch.py b/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/HeadVersionTolerant/headversiontolerant/operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/HeadVersionTolerant/headversiontolerant/operations/_patch.py +++ b/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/HeadVersionTolerant/headversiontolerant/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/HeadVersionTolerant/setup.py b/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/HeadVersionTolerant/setup.py index f86c4179ad6..1a98eeef7be 100644 --- a/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/HeadVersionTolerant/setup.py +++ b/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/HeadVersionTolerant/setup.py @@ -8,7 +8,6 @@ from setuptools import setup, find_packages - PACKAGE_NAME = "autorestheadtestservice" version = "0.1.0" diff --git a/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/LroPagingVersionTolerant/lropagingversiontolerant/_patch.py b/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/LroPagingVersionTolerant/lropagingversiontolerant/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/LroPagingVersionTolerant/lropagingversiontolerant/_patch.py +++ b/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/LroPagingVersionTolerant/lropagingversiontolerant/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/LroPagingVersionTolerant/lropagingversiontolerant/aio/_patch.py b/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/LroPagingVersionTolerant/lropagingversiontolerant/aio/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/LroPagingVersionTolerant/lropagingversiontolerant/aio/_patch.py +++ b/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/LroPagingVersionTolerant/lropagingversiontolerant/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/LroPagingVersionTolerant/lropagingversiontolerant/aio/operations/_patch.py b/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/LroPagingVersionTolerant/lropagingversiontolerant/aio/operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/LroPagingVersionTolerant/lropagingversiontolerant/aio/operations/_patch.py +++ b/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/LroPagingVersionTolerant/lropagingversiontolerant/aio/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/LroPagingVersionTolerant/lropagingversiontolerant/operations/_patch.py b/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/LroPagingVersionTolerant/lropagingversiontolerant/operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/LroPagingVersionTolerant/lropagingversiontolerant/operations/_patch.py +++ b/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/LroPagingVersionTolerant/lropagingversiontolerant/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/LroPagingVersionTolerant/setup.py b/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/LroPagingVersionTolerant/setup.py index 7f50b8b297d..038e045a59a 100644 --- a/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/LroPagingVersionTolerant/setup.py +++ b/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/LroPagingVersionTolerant/setup.py @@ -9,7 +9,6 @@ from setuptools import setup, find_packages - PACKAGE_NAME = "lropagingversiontolerant" version = "1.0.0b1" diff --git a/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/LroVersionTolerant/lroversiontolerant/_patch.py b/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/LroVersionTolerant/lroversiontolerant/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/LroVersionTolerant/lroversiontolerant/_patch.py +++ b/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/LroVersionTolerant/lroversiontolerant/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/LroVersionTolerant/lroversiontolerant/aio/_patch.py b/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/LroVersionTolerant/lroversiontolerant/aio/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/LroVersionTolerant/lroversiontolerant/aio/_patch.py +++ b/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/LroVersionTolerant/lroversiontolerant/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/LroVersionTolerant/lroversiontolerant/aio/operations/_patch.py b/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/LroVersionTolerant/lroversiontolerant/aio/operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/LroVersionTolerant/lroversiontolerant/aio/operations/_patch.py +++ b/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/LroVersionTolerant/lroversiontolerant/aio/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/LroVersionTolerant/lroversiontolerant/operations/_patch.py b/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/LroVersionTolerant/lroversiontolerant/operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/LroVersionTolerant/lroversiontolerant/operations/_patch.py +++ b/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/LroVersionTolerant/lroversiontolerant/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/LroVersionTolerant/setup.py b/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/LroVersionTolerant/setup.py index 88e5c20f485..10bd1250e06 100644 --- a/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/LroVersionTolerant/setup.py +++ b/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/LroVersionTolerant/setup.py @@ -8,7 +8,6 @@ from setuptools import setup, find_packages - PACKAGE_NAME = "autorestlongrunningoperationtestservice" version = "0.1.0" diff --git a/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/LroWithParameterizedEndpointsVersionTolerant/lrowithparameterizedendpointsversiontolerant/_operations/_patch.py b/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/LroWithParameterizedEndpointsVersionTolerant/lrowithparameterizedendpointsversiontolerant/_operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/LroWithParameterizedEndpointsVersionTolerant/lrowithparameterizedendpointsversiontolerant/_operations/_patch.py +++ b/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/LroWithParameterizedEndpointsVersionTolerant/lrowithparameterizedendpointsversiontolerant/_operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/LroWithParameterizedEndpointsVersionTolerant/lrowithparameterizedendpointsversiontolerant/_patch.py b/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/LroWithParameterizedEndpointsVersionTolerant/lrowithparameterizedendpointsversiontolerant/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/LroWithParameterizedEndpointsVersionTolerant/lrowithparameterizedendpointsversiontolerant/_patch.py +++ b/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/LroWithParameterizedEndpointsVersionTolerant/lrowithparameterizedendpointsversiontolerant/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/LroWithParameterizedEndpointsVersionTolerant/lrowithparameterizedendpointsversiontolerant/aio/_operations/_patch.py b/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/LroWithParameterizedEndpointsVersionTolerant/lrowithparameterizedendpointsversiontolerant/aio/_operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/LroWithParameterizedEndpointsVersionTolerant/lrowithparameterizedendpointsversiontolerant/aio/_operations/_patch.py +++ b/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/LroWithParameterizedEndpointsVersionTolerant/lrowithparameterizedendpointsversiontolerant/aio/_operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/LroWithParameterizedEndpointsVersionTolerant/lrowithparameterizedendpointsversiontolerant/aio/_patch.py b/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/LroWithParameterizedEndpointsVersionTolerant/lrowithparameterizedendpointsversiontolerant/aio/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/LroWithParameterizedEndpointsVersionTolerant/lrowithparameterizedendpointsversiontolerant/aio/_patch.py +++ b/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/LroWithParameterizedEndpointsVersionTolerant/lrowithparameterizedendpointsversiontolerant/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/LroWithParameterizedEndpointsVersionTolerant/setup.py b/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/LroWithParameterizedEndpointsVersionTolerant/setup.py index ce174315da9..08029b7d89a 100644 --- a/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/LroWithParameterizedEndpointsVersionTolerant/setup.py +++ b/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/LroWithParameterizedEndpointsVersionTolerant/setup.py @@ -8,7 +8,6 @@ from setuptools import setup, find_packages - PACKAGE_NAME = "lrowithparamaterizedendpoints" version = "0.1.0" diff --git a/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/PagingVersionTolerant/pagingversiontolerant/_patch.py b/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/PagingVersionTolerant/pagingversiontolerant/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/PagingVersionTolerant/pagingversiontolerant/_patch.py +++ b/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/PagingVersionTolerant/pagingversiontolerant/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/PagingVersionTolerant/pagingversiontolerant/aio/_patch.py b/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/PagingVersionTolerant/pagingversiontolerant/aio/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/PagingVersionTolerant/pagingversiontolerant/aio/_patch.py +++ b/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/PagingVersionTolerant/pagingversiontolerant/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/PagingVersionTolerant/pagingversiontolerant/aio/operations/_patch.py b/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/PagingVersionTolerant/pagingversiontolerant/aio/operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/PagingVersionTolerant/pagingversiontolerant/aio/operations/_patch.py +++ b/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/PagingVersionTolerant/pagingversiontolerant/aio/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/PagingVersionTolerant/pagingversiontolerant/operations/_patch.py b/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/PagingVersionTolerant/pagingversiontolerant/operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/PagingVersionTolerant/pagingversiontolerant/operations/_patch.py +++ b/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/PagingVersionTolerant/pagingversiontolerant/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/PagingVersionTolerant/setup.py b/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/PagingVersionTolerant/setup.py index b44a4d8eef6..e3824b83d01 100644 --- a/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/PagingVersionTolerant/setup.py +++ b/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/PagingVersionTolerant/setup.py @@ -8,7 +8,6 @@ from setuptools import setup, find_packages - PACKAGE_NAME = "autorestpagingtestservice" version = "0.1.0" diff --git a/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/StorageManagementClientVersionTolerant/setup.py b/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/StorageManagementClientVersionTolerant/setup.py index 11e5dc47153..f84268cd2ad 100644 --- a/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/StorageManagementClientVersionTolerant/setup.py +++ b/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/StorageManagementClientVersionTolerant/setup.py @@ -8,7 +8,6 @@ from setuptools import setup, find_packages - PACKAGE_NAME = "storagemanagementclient" version = "0.1.0" diff --git a/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/StorageManagementClientVersionTolerant/storageversiontolerant/_patch.py b/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/StorageManagementClientVersionTolerant/storageversiontolerant/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/StorageManagementClientVersionTolerant/storageversiontolerant/_patch.py +++ b/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/StorageManagementClientVersionTolerant/storageversiontolerant/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/StorageManagementClientVersionTolerant/storageversiontolerant/aio/_patch.py b/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/StorageManagementClientVersionTolerant/storageversiontolerant/aio/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/StorageManagementClientVersionTolerant/storageversiontolerant/aio/_patch.py +++ b/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/StorageManagementClientVersionTolerant/storageversiontolerant/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/StorageManagementClientVersionTolerant/storageversiontolerant/aio/operations/_patch.py b/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/StorageManagementClientVersionTolerant/storageversiontolerant/aio/operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/StorageManagementClientVersionTolerant/storageversiontolerant/aio/operations/_patch.py +++ b/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/StorageManagementClientVersionTolerant/storageversiontolerant/aio/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/StorageManagementClientVersionTolerant/storageversiontolerant/operations/_patch.py b/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/StorageManagementClientVersionTolerant/storageversiontolerant/operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/StorageManagementClientVersionTolerant/storageversiontolerant/operations/_patch.py +++ b/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/StorageManagementClientVersionTolerant/storageversiontolerant/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/SubscriptionIdApiVersionVersionTolerant/setup.py b/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/SubscriptionIdApiVersionVersionTolerant/setup.py index b7bf4746661..6bc3274fa70 100644 --- a/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/SubscriptionIdApiVersionVersionTolerant/setup.py +++ b/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/SubscriptionIdApiVersionVersionTolerant/setup.py @@ -8,7 +8,6 @@ from setuptools import setup, find_packages - PACKAGE_NAME = "microsoftazuretesturl" version = "0.1.0" diff --git a/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/SubscriptionIdApiVersionVersionTolerant/subscriptionidapiversionversiontolerant/_patch.py b/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/SubscriptionIdApiVersionVersionTolerant/subscriptionidapiversionversiontolerant/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/SubscriptionIdApiVersionVersionTolerant/subscriptionidapiversionversiontolerant/_patch.py +++ b/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/SubscriptionIdApiVersionVersionTolerant/subscriptionidapiversionversiontolerant/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/SubscriptionIdApiVersionVersionTolerant/subscriptionidapiversionversiontolerant/aio/_patch.py b/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/SubscriptionIdApiVersionVersionTolerant/subscriptionidapiversionversiontolerant/aio/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/SubscriptionIdApiVersionVersionTolerant/subscriptionidapiversionversiontolerant/aio/_patch.py +++ b/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/SubscriptionIdApiVersionVersionTolerant/subscriptionidapiversionversiontolerant/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/SubscriptionIdApiVersionVersionTolerant/subscriptionidapiversionversiontolerant/aio/operations/_patch.py b/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/SubscriptionIdApiVersionVersionTolerant/subscriptionidapiversionversiontolerant/aio/operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/SubscriptionIdApiVersionVersionTolerant/subscriptionidapiversionversiontolerant/aio/operations/_patch.py +++ b/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/SubscriptionIdApiVersionVersionTolerant/subscriptionidapiversionversiontolerant/aio/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/SubscriptionIdApiVersionVersionTolerant/subscriptionidapiversionversiontolerant/operations/_patch.py b/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/SubscriptionIdApiVersionVersionTolerant/subscriptionidapiversionversiontolerant/operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/SubscriptionIdApiVersionVersionTolerant/subscriptionidapiversionversiontolerant/operations/_patch.py +++ b/packages/autorest.python/test/azure/version-tolerant/Expected/AcceptanceTests/SubscriptionIdApiVersionVersionTolerant/subscriptionidapiversionversiontolerant/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/dpg/version-tolerant/Expected/AcceptanceTests/DPGCustomizationCustomizedVersionTolerant/dpgcustomizationcustomizedversiontolerant/_operations/_patch.py b/packages/autorest.python/test/dpg/version-tolerant/Expected/AcceptanceTests/DPGCustomizationCustomizedVersionTolerant/dpgcustomizationcustomizedversiontolerant/_operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/dpg/version-tolerant/Expected/AcceptanceTests/DPGCustomizationCustomizedVersionTolerant/dpgcustomizationcustomizedversiontolerant/_operations/_patch.py +++ b/packages/autorest.python/test/dpg/version-tolerant/Expected/AcceptanceTests/DPGCustomizationCustomizedVersionTolerant/dpgcustomizationcustomizedversiontolerant/_operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/dpg/version-tolerant/Expected/AcceptanceTests/DPGCustomizationCustomizedVersionTolerant/dpgcustomizationcustomizedversiontolerant/_patch.py b/packages/autorest.python/test/dpg/version-tolerant/Expected/AcceptanceTests/DPGCustomizationCustomizedVersionTolerant/dpgcustomizationcustomizedversiontolerant/_patch.py index 0937b0ba627..8c9afc8cced 100644 --- a/packages/autorest.python/test/dpg/version-tolerant/Expected/AcceptanceTests/DPGCustomizationCustomizedVersionTolerant/dpgcustomizationcustomizedversiontolerant/_patch.py +++ b/packages/autorest.python/test/dpg/version-tolerant/Expected/AcceptanceTests/DPGCustomizationCustomizedVersionTolerant/dpgcustomizationcustomizedversiontolerant/_patch.py @@ -8,6 +8,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List, Any, Union, cast, IO from azure.core.paging import ItemPaged from azure.core.polling import LROPoller diff --git a/packages/autorest.python/test/dpg/version-tolerant/Expected/AcceptanceTests/DPGCustomizationCustomizedVersionTolerant/dpgcustomizationcustomizedversiontolerant/aio/_operations/_patch.py b/packages/autorest.python/test/dpg/version-tolerant/Expected/AcceptanceTests/DPGCustomizationCustomizedVersionTolerant/dpgcustomizationcustomizedversiontolerant/aio/_operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/dpg/version-tolerant/Expected/AcceptanceTests/DPGCustomizationCustomizedVersionTolerant/dpgcustomizationcustomizedversiontolerant/aio/_operations/_patch.py +++ b/packages/autorest.python/test/dpg/version-tolerant/Expected/AcceptanceTests/DPGCustomizationCustomizedVersionTolerant/dpgcustomizationcustomizedversiontolerant/aio/_operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/dpg/version-tolerant/Expected/AcceptanceTests/DPGCustomizationCustomizedVersionTolerant/dpgcustomizationcustomizedversiontolerant/aio/_patch.py b/packages/autorest.python/test/dpg/version-tolerant/Expected/AcceptanceTests/DPGCustomizationCustomizedVersionTolerant/dpgcustomizationcustomizedversiontolerant/aio/_patch.py index 2c1eeb4368f..fbb4dd2ff97 100644 --- a/packages/autorest.python/test/dpg/version-tolerant/Expected/AcceptanceTests/DPGCustomizationCustomizedVersionTolerant/dpgcustomizationcustomizedversiontolerant/aio/_patch.py +++ b/packages/autorest.python/test/dpg/version-tolerant/Expected/AcceptanceTests/DPGCustomizationCustomizedVersionTolerant/dpgcustomizationcustomizedversiontolerant/aio/_patch.py @@ -8,6 +8,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List, Any, Union, cast, IO from azure.core.async_paging import AsyncItemPaged from azure.core.polling import AsyncLROPoller diff --git a/packages/autorest.python/test/dpg/version-tolerant/Expected/AcceptanceTests/DPGCustomizationCustomizedVersionTolerant/setup.py b/packages/autorest.python/test/dpg/version-tolerant/Expected/AcceptanceTests/DPGCustomizationCustomizedVersionTolerant/setup.py index 9f91dc341c9..250a343c31f 100644 --- a/packages/autorest.python/test/dpg/version-tolerant/Expected/AcceptanceTests/DPGCustomizationCustomizedVersionTolerant/setup.py +++ b/packages/autorest.python/test/dpg/version-tolerant/Expected/AcceptanceTests/DPGCustomizationCustomizedVersionTolerant/setup.py @@ -8,7 +8,6 @@ from setuptools import setup, find_packages - PACKAGE_NAME = "dpgcustomizationcustomized" version = "0.1.0" diff --git a/packages/autorest.python/test/dpg/version-tolerant/Expected/AcceptanceTests/DPGCustomizationInitialVersionTolerant/dpgcustomizationinitialversiontolerant/_operations/_patch.py b/packages/autorest.python/test/dpg/version-tolerant/Expected/AcceptanceTests/DPGCustomizationInitialVersionTolerant/dpgcustomizationinitialversiontolerant/_operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/dpg/version-tolerant/Expected/AcceptanceTests/DPGCustomizationInitialVersionTolerant/dpgcustomizationinitialversiontolerant/_operations/_patch.py +++ b/packages/autorest.python/test/dpg/version-tolerant/Expected/AcceptanceTests/DPGCustomizationInitialVersionTolerant/dpgcustomizationinitialversiontolerant/_operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/dpg/version-tolerant/Expected/AcceptanceTests/DPGCustomizationInitialVersionTolerant/dpgcustomizationinitialversiontolerant/_patch.py b/packages/autorest.python/test/dpg/version-tolerant/Expected/AcceptanceTests/DPGCustomizationInitialVersionTolerant/dpgcustomizationinitialversiontolerant/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/dpg/version-tolerant/Expected/AcceptanceTests/DPGCustomizationInitialVersionTolerant/dpgcustomizationinitialversiontolerant/_patch.py +++ b/packages/autorest.python/test/dpg/version-tolerant/Expected/AcceptanceTests/DPGCustomizationInitialVersionTolerant/dpgcustomizationinitialversiontolerant/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/dpg/version-tolerant/Expected/AcceptanceTests/DPGCustomizationInitialVersionTolerant/dpgcustomizationinitialversiontolerant/aio/_operations/_patch.py b/packages/autorest.python/test/dpg/version-tolerant/Expected/AcceptanceTests/DPGCustomizationInitialVersionTolerant/dpgcustomizationinitialversiontolerant/aio/_operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/dpg/version-tolerant/Expected/AcceptanceTests/DPGCustomizationInitialVersionTolerant/dpgcustomizationinitialversiontolerant/aio/_operations/_patch.py +++ b/packages/autorest.python/test/dpg/version-tolerant/Expected/AcceptanceTests/DPGCustomizationInitialVersionTolerant/dpgcustomizationinitialversiontolerant/aio/_operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/dpg/version-tolerant/Expected/AcceptanceTests/DPGCustomizationInitialVersionTolerant/dpgcustomizationinitialversiontolerant/aio/_patch.py b/packages/autorest.python/test/dpg/version-tolerant/Expected/AcceptanceTests/DPGCustomizationInitialVersionTolerant/dpgcustomizationinitialversiontolerant/aio/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/dpg/version-tolerant/Expected/AcceptanceTests/DPGCustomizationInitialVersionTolerant/dpgcustomizationinitialversiontolerant/aio/_patch.py +++ b/packages/autorest.python/test/dpg/version-tolerant/Expected/AcceptanceTests/DPGCustomizationInitialVersionTolerant/dpgcustomizationinitialversiontolerant/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/dpg/version-tolerant/Expected/AcceptanceTests/DPGCustomizationInitialVersionTolerant/setup.py b/packages/autorest.python/test/dpg/version-tolerant/Expected/AcceptanceTests/DPGCustomizationInitialVersionTolerant/setup.py index d58c0e29aa6..aee8e1e5294 100644 --- a/packages/autorest.python/test/dpg/version-tolerant/Expected/AcceptanceTests/DPGCustomizationInitialVersionTolerant/setup.py +++ b/packages/autorest.python/test/dpg/version-tolerant/Expected/AcceptanceTests/DPGCustomizationInitialVersionTolerant/setup.py @@ -8,7 +8,6 @@ from setuptools import setup, find_packages - PACKAGE_NAME = "dpgcustomizationinitial" version = "0.1.0" diff --git a/packages/autorest.python/test/dpg/version-tolerant/Expected/AcceptanceTests/DPGServiceDrivenInitialVersionTolerant/dpgservicedriveninitialversiontolerant/_patch.py b/packages/autorest.python/test/dpg/version-tolerant/Expected/AcceptanceTests/DPGServiceDrivenInitialVersionTolerant/dpgservicedriveninitialversiontolerant/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/dpg/version-tolerant/Expected/AcceptanceTests/DPGServiceDrivenInitialVersionTolerant/dpgservicedriveninitialversiontolerant/_patch.py +++ b/packages/autorest.python/test/dpg/version-tolerant/Expected/AcceptanceTests/DPGServiceDrivenInitialVersionTolerant/dpgservicedriveninitialversiontolerant/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/dpg/version-tolerant/Expected/AcceptanceTests/DPGServiceDrivenInitialVersionTolerant/dpgservicedriveninitialversiontolerant/aio/_patch.py b/packages/autorest.python/test/dpg/version-tolerant/Expected/AcceptanceTests/DPGServiceDrivenInitialVersionTolerant/dpgservicedriveninitialversiontolerant/aio/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/dpg/version-tolerant/Expected/AcceptanceTests/DPGServiceDrivenInitialVersionTolerant/dpgservicedriveninitialversiontolerant/aio/_patch.py +++ b/packages/autorest.python/test/dpg/version-tolerant/Expected/AcceptanceTests/DPGServiceDrivenInitialVersionTolerant/dpgservicedriveninitialversiontolerant/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/dpg/version-tolerant/Expected/AcceptanceTests/DPGServiceDrivenInitialVersionTolerant/dpgservicedriveninitialversiontolerant/aio/operations/_patch.py b/packages/autorest.python/test/dpg/version-tolerant/Expected/AcceptanceTests/DPGServiceDrivenInitialVersionTolerant/dpgservicedriveninitialversiontolerant/aio/operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/dpg/version-tolerant/Expected/AcceptanceTests/DPGServiceDrivenInitialVersionTolerant/dpgservicedriveninitialversiontolerant/aio/operations/_patch.py +++ b/packages/autorest.python/test/dpg/version-tolerant/Expected/AcceptanceTests/DPGServiceDrivenInitialVersionTolerant/dpgservicedriveninitialversiontolerant/aio/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/dpg/version-tolerant/Expected/AcceptanceTests/DPGServiceDrivenInitialVersionTolerant/dpgservicedriveninitialversiontolerant/operations/_patch.py b/packages/autorest.python/test/dpg/version-tolerant/Expected/AcceptanceTests/DPGServiceDrivenInitialVersionTolerant/dpgservicedriveninitialversiontolerant/operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/dpg/version-tolerant/Expected/AcceptanceTests/DPGServiceDrivenInitialVersionTolerant/dpgservicedriveninitialversiontolerant/operations/_patch.py +++ b/packages/autorest.python/test/dpg/version-tolerant/Expected/AcceptanceTests/DPGServiceDrivenInitialVersionTolerant/dpgservicedriveninitialversiontolerant/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/dpg/version-tolerant/Expected/AcceptanceTests/DPGServiceDrivenInitialVersionTolerant/setup.py b/packages/autorest.python/test/dpg/version-tolerant/Expected/AcceptanceTests/DPGServiceDrivenInitialVersionTolerant/setup.py index 0a9423116f0..0a64f49daa1 100644 --- a/packages/autorest.python/test/dpg/version-tolerant/Expected/AcceptanceTests/DPGServiceDrivenInitialVersionTolerant/setup.py +++ b/packages/autorest.python/test/dpg/version-tolerant/Expected/AcceptanceTests/DPGServiceDrivenInitialVersionTolerant/setup.py @@ -8,7 +8,6 @@ from setuptools import setup, find_packages - PACKAGE_NAME = "dpgservicedriveninitial" version = "0.1.0" diff --git a/packages/autorest.python/test/dpg/version-tolerant/Expected/AcceptanceTests/DPGServiceDrivenUpdateOneVersionTolerant/dpgservicedrivenupdateoneversiontolerant/_patch.py b/packages/autorest.python/test/dpg/version-tolerant/Expected/AcceptanceTests/DPGServiceDrivenUpdateOneVersionTolerant/dpgservicedrivenupdateoneversiontolerant/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/dpg/version-tolerant/Expected/AcceptanceTests/DPGServiceDrivenUpdateOneVersionTolerant/dpgservicedrivenupdateoneversiontolerant/_patch.py +++ b/packages/autorest.python/test/dpg/version-tolerant/Expected/AcceptanceTests/DPGServiceDrivenUpdateOneVersionTolerant/dpgservicedrivenupdateoneversiontolerant/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/dpg/version-tolerant/Expected/AcceptanceTests/DPGServiceDrivenUpdateOneVersionTolerant/dpgservicedrivenupdateoneversiontolerant/aio/_patch.py b/packages/autorest.python/test/dpg/version-tolerant/Expected/AcceptanceTests/DPGServiceDrivenUpdateOneVersionTolerant/dpgservicedrivenupdateoneversiontolerant/aio/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/dpg/version-tolerant/Expected/AcceptanceTests/DPGServiceDrivenUpdateOneVersionTolerant/dpgservicedrivenupdateoneversiontolerant/aio/_patch.py +++ b/packages/autorest.python/test/dpg/version-tolerant/Expected/AcceptanceTests/DPGServiceDrivenUpdateOneVersionTolerant/dpgservicedrivenupdateoneversiontolerant/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/dpg/version-tolerant/Expected/AcceptanceTests/DPGServiceDrivenUpdateOneVersionTolerant/dpgservicedrivenupdateoneversiontolerant/aio/operations/_patch.py b/packages/autorest.python/test/dpg/version-tolerant/Expected/AcceptanceTests/DPGServiceDrivenUpdateOneVersionTolerant/dpgservicedrivenupdateoneversiontolerant/aio/operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/dpg/version-tolerant/Expected/AcceptanceTests/DPGServiceDrivenUpdateOneVersionTolerant/dpgservicedrivenupdateoneversiontolerant/aio/operations/_patch.py +++ b/packages/autorest.python/test/dpg/version-tolerant/Expected/AcceptanceTests/DPGServiceDrivenUpdateOneVersionTolerant/dpgservicedrivenupdateoneversiontolerant/aio/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/dpg/version-tolerant/Expected/AcceptanceTests/DPGServiceDrivenUpdateOneVersionTolerant/dpgservicedrivenupdateoneversiontolerant/operations/_patch.py b/packages/autorest.python/test/dpg/version-tolerant/Expected/AcceptanceTests/DPGServiceDrivenUpdateOneVersionTolerant/dpgservicedrivenupdateoneversiontolerant/operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/dpg/version-tolerant/Expected/AcceptanceTests/DPGServiceDrivenUpdateOneVersionTolerant/dpgservicedrivenupdateoneversiontolerant/operations/_patch.py +++ b/packages/autorest.python/test/dpg/version-tolerant/Expected/AcceptanceTests/DPGServiceDrivenUpdateOneVersionTolerant/dpgservicedrivenupdateoneversiontolerant/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/dpg/version-tolerant/Expected/AcceptanceTests/DPGServiceDrivenUpdateOneVersionTolerant/setup.py b/packages/autorest.python/test/dpg/version-tolerant/Expected/AcceptanceTests/DPGServiceDrivenUpdateOneVersionTolerant/setup.py index a0e76319665..931d156aebc 100644 --- a/packages/autorest.python/test/dpg/version-tolerant/Expected/AcceptanceTests/DPGServiceDrivenUpdateOneVersionTolerant/setup.py +++ b/packages/autorest.python/test/dpg/version-tolerant/Expected/AcceptanceTests/DPGServiceDrivenUpdateOneVersionTolerant/setup.py @@ -8,7 +8,6 @@ from setuptools import setup, find_packages - PACKAGE_NAME = "dpgservicedrivenupdateone" version = "0.1.0" diff --git a/packages/autorest.python/test/dpg/version-tolerant/Expected/AcceptanceTests/DPGTestModelsVersionTolerant/dpgtestmodelsversiontolerant/_operations/_patch.py b/packages/autorest.python/test/dpg/version-tolerant/Expected/AcceptanceTests/DPGTestModelsVersionTolerant/dpgtestmodelsversiontolerant/_operations/_patch.py index ccae2673af0..c6d685a3988 100644 --- a/packages/autorest.python/test/dpg/version-tolerant/Expected/AcceptanceTests/DPGTestModelsVersionTolerant/dpgtestmodelsversiontolerant/_operations/_patch.py +++ b/packages/autorest.python/test/dpg/version-tolerant/Expected/AcceptanceTests/DPGTestModelsVersionTolerant/dpgtestmodelsversiontolerant/_operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List, Any from ..models import Product from ._operations import _DPGClientOperationsMixin as _DPGClientOperationsMixinGenerated diff --git a/packages/autorest.python/test/dpg/version-tolerant/Expected/AcceptanceTests/DPGTestModelsVersionTolerant/dpgtestmodelsversiontolerant/_patch.py b/packages/autorest.python/test/dpg/version-tolerant/Expected/AcceptanceTests/DPGTestModelsVersionTolerant/dpgtestmodelsversiontolerant/_patch.py index fa215221810..12c66bab022 100644 --- a/packages/autorest.python/test/dpg/version-tolerant/Expected/AcceptanceTests/DPGTestModelsVersionTolerant/dpgtestmodelsversiontolerant/_patch.py +++ b/packages/autorest.python/test/dpg/version-tolerant/Expected/AcceptanceTests/DPGTestModelsVersionTolerant/dpgtestmodelsversiontolerant/_patch.py @@ -8,6 +8,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List from ._client import DPGClient as DPGClientGenerated diff --git a/packages/autorest.python/test/dpg/version-tolerant/Expected/AcceptanceTests/DPGTestModelsVersionTolerant/dpgtestmodelsversiontolerant/aio/_operations/_patch.py b/packages/autorest.python/test/dpg/version-tolerant/Expected/AcceptanceTests/DPGTestModelsVersionTolerant/dpgtestmodelsversiontolerant/aio/_operations/_patch.py index 084c07a6d28..b59678a0250 100644 --- a/packages/autorest.python/test/dpg/version-tolerant/Expected/AcceptanceTests/DPGTestModelsVersionTolerant/dpgtestmodelsversiontolerant/aio/_operations/_patch.py +++ b/packages/autorest.python/test/dpg/version-tolerant/Expected/AcceptanceTests/DPGTestModelsVersionTolerant/dpgtestmodelsversiontolerant/aio/_operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List, Any from ...models import Product from ._operations import _DPGClientOperationsMixin as _DPGClientOperationsMixinGenerated diff --git a/packages/autorest.python/test/dpg/version-tolerant/Expected/AcceptanceTests/DPGTestModelsVersionTolerant/dpgtestmodelsversiontolerant/aio/_patch.py b/packages/autorest.python/test/dpg/version-tolerant/Expected/AcceptanceTests/DPGTestModelsVersionTolerant/dpgtestmodelsversiontolerant/aio/_patch.py index fa215221810..12c66bab022 100644 --- a/packages/autorest.python/test/dpg/version-tolerant/Expected/AcceptanceTests/DPGTestModelsVersionTolerant/dpgtestmodelsversiontolerant/aio/_patch.py +++ b/packages/autorest.python/test/dpg/version-tolerant/Expected/AcceptanceTests/DPGTestModelsVersionTolerant/dpgtestmodelsversiontolerant/aio/_patch.py @@ -8,6 +8,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List from ._client import DPGClient as DPGClientGenerated diff --git a/packages/autorest.python/test/dpg/version-tolerant/Expected/AcceptanceTests/DPGTestModelsVersionTolerant/dpgtestmodelsversiontolerant/models/_patch.py b/packages/autorest.python/test/dpg/version-tolerant/Expected/AcceptanceTests/DPGTestModelsVersionTolerant/dpgtestmodelsversiontolerant/models/_patch.py index 30c0e5dccdf..b7c15515bf2 100644 --- a/packages/autorest.python/test/dpg/version-tolerant/Expected/AcceptanceTests/DPGTestModelsVersionTolerant/dpgtestmodelsversiontolerant/models/_patch.py +++ b/packages/autorest.python/test/dpg/version-tolerant/Expected/AcceptanceTests/DPGTestModelsVersionTolerant/dpgtestmodelsversiontolerant/models/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List from ._models import Product as ProductGenerated diff --git a/packages/autorest.python/test/dpg/version-tolerant/Expected/AcceptanceTests/DPGTestModelsVersionTolerant/setup.py b/packages/autorest.python/test/dpg/version-tolerant/Expected/AcceptanceTests/DPGTestModelsVersionTolerant/setup.py index 95878502fb3..4cc602f9809 100644 --- a/packages/autorest.python/test/dpg/version-tolerant/Expected/AcceptanceTests/DPGTestModelsVersionTolerant/setup.py +++ b/packages/autorest.python/test/dpg/version-tolerant/Expected/AcceptanceTests/DPGTestModelsVersionTolerant/setup.py @@ -8,7 +8,6 @@ from setuptools import setup, find_packages - PACKAGE_NAME = "dpgtestmodels" version = "0.1.0" diff --git a/packages/autorest.python/test/unittests/test_m2r.py b/packages/autorest.python/test/unittests/test_m2r.py index 13d124e7ee6..f435f988d53 100644 --- a/packages/autorest.python/test/unittests/test_m2r.py +++ b/packages/autorest.python/test/unittests/test_m2r.py @@ -5,7 +5,6 @@ # -------------------------------------------------------------------------- from autorest import m2r as m2r_autorest - _MD_LINK = "[inline link](https://github.com/Azure/autorest.python)" _RST_LINK = "`inline link `_" diff --git a/packages/autorest.python/test/vanilla/legacy/AcceptanceTests/asynctests/test_header.py b/packages/autorest.python/test/vanilla/legacy/AcceptanceTests/asynctests/test_header.py index b25dc4ee0c8..c31c80e4663 100644 --- a/packages/autorest.python/test/vanilla/legacy/AcceptanceTests/asynctests/test_header.py +++ b/packages/autorest.python/test/vanilla/legacy/AcceptanceTests/asynctests/test_header.py @@ -185,7 +185,7 @@ async def test_duration(self, client, value_header): @pytest.mark.asyncio async def test_byte(self, client, value_header): - u_bytes = bytearray("\u554A\u9F44\u4E02\u72DB\u72DC\uF9F1\uF92C\uF9F1\uFA0C\uFA29", encoding="utf-8") + u_bytes = bytearray("\u554a\u9f44\u4e02\u72db\u72dc\uf9f1\uf92c\uf9f1\ufa0c\ufa29", encoding="utf-8") await client.header.param_byte("valid", u_bytes) response = await client.header.response_byte("valid", cls=value_header) diff --git a/packages/autorest.python/test/vanilla/legacy/AcceptanceTests/asynctests/test_url.py b/packages/autorest.python/test/vanilla/legacy/AcceptanceTests/asynctests/test_url.py index 2804bc95359..268622282f2 100644 --- a/packages/autorest.python/test/vanilla/legacy/AcceptanceTests/asynctests/test_url.py +++ b/packages/autorest.python/test/vanilla/legacy/AcceptanceTests/asynctests/test_url.py @@ -73,7 +73,7 @@ async def test_byte_empty_and_null(self, client): @pytest.mark.asyncio async def test_byte_multi_byte(self, client): - u_bytes = bytearray("\u554A\u9F44\u4E02\u72DB\u72DC\uF9F1\uF92C\uF9F1\uFA0C\uFA29", encoding="utf-8") + u_bytes = bytearray("\u554a\u9f44\u4e02\u72db\u72dc\uf9f1\uf92c\uf9f1\ufa0c\ufa29", encoding="utf-8") await client.paths.byte_multi_byte(u_bytes) @pytest.mark.asyncio @@ -163,7 +163,7 @@ async def test_base64_url(self, client): @pytest.mark.asyncio async def test_queries_byte(self, client): await client.queries.byte_empty() - u_bytes = bytearray("\u554A\u9F44\u4E02\u72DB\u72DC\uF9F1\uF92C\uF9F1\uFA0C\uFA29", encoding="utf-8") + u_bytes = bytearray("\u554a\u9f44\u4e02\u72db\u72dc\uf9f1\uf92c\uf9f1\ufa0c\ufa29", encoding="utf-8") await client.queries.byte_multi_byte(u_bytes) await client.queries.byte_null() diff --git a/packages/autorest.python/test/vanilla/legacy/AcceptanceTests/conftest.py b/packages/autorest.python/test/vanilla/legacy/AcceptanceTests/conftest.py index 64139e91e42..fdef7f8070e 100644 --- a/packages/autorest.python/test/vanilla/legacy/AcceptanceTests/conftest.py +++ b/packages/autorest.python/test/vanilla/legacy/AcceptanceTests/conftest.py @@ -36,7 +36,6 @@ import pytest - cwd = dirname(realpath(__file__)) diff --git a/packages/autorest.python/test/vanilla/legacy/AcceptanceTests/test_header.py b/packages/autorest.python/test/vanilla/legacy/AcceptanceTests/test_header.py index 01b39b96a4b..6c086c6c537 100644 --- a/packages/autorest.python/test/vanilla/legacy/AcceptanceTests/test_header.py +++ b/packages/autorest.python/test/vanilla/legacy/AcceptanceTests/test_header.py @@ -169,7 +169,7 @@ def test_duration(self, client, value_header): assert response == timedelta(days=123, hours=22, minutes=14, seconds=12, milliseconds=11) def test_byte(self, client, value_header): - u_bytes = bytearray("\u554A\u9F44\u4E02\u72DB\u72DC\uF9F1\uF92C\uF9F1\uFA0C\uFA29", encoding="utf-8") + u_bytes = bytearray("\u554a\u9f44\u4e02\u72db\u72dc\uf9f1\uf92c\uf9f1\ufa0c\ufa29", encoding="utf-8") client.header.param_byte("valid", u_bytes) response = client.header.response_byte("valid", cls=value_header) diff --git a/packages/autorest.python/test/vanilla/legacy/AcceptanceTests/test_url.py b/packages/autorest.python/test/vanilla/legacy/AcceptanceTests/test_url.py index 84306c535d2..857737ae31d 100644 --- a/packages/autorest.python/test/vanilla/legacy/AcceptanceTests/test_url.py +++ b/packages/autorest.python/test/vanilla/legacy/AcceptanceTests/test_url.py @@ -67,7 +67,7 @@ def test_byte_empty_and_null(self, client): client.paths.byte_null(None) def test_byte_multi_byte(self, client): - u_bytes = bytearray("\u554A\u9F44\u4E02\u72DB\u72DC\uF9F1\uF92C\uF9F1\uFA0C\uFA29", encoding="utf-8") + u_bytes = bytearray("\u554a\u9f44\u4e02\u72db\u72dc\uf9f1\uf92c\uf9f1\ufa0c\ufa29", encoding="utf-8") client.paths.byte_multi_byte(u_bytes) def test_date_null(self, client): @@ -138,7 +138,7 @@ def test_base64_url(self, client): def test_queries_byte(self, client): client.queries.byte_empty() - u_bytes = bytearray("\u554A\u9F44\u4E02\u72DB\u72DC\uF9F1\uF92C\uF9F1\uFA0C\uFA29", encoding="utf-8") + u_bytes = bytearray("\u554a\u9f44\u4e02\u72db\u72dc\uf9f1\uf92c\uf9f1\ufa0c\ufa29", encoding="utf-8") client.queries.byte_multi_byte(u_bytes) client.queries.byte_null() diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/AdditionalProperties/additionalproperties/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/AdditionalProperties/additionalproperties/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/AdditionalProperties/additionalproperties/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/AdditionalProperties/additionalproperties/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/AdditionalProperties/additionalproperties/aio/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/AdditionalProperties/additionalproperties/aio/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/AdditionalProperties/additionalproperties/aio/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/AdditionalProperties/additionalproperties/aio/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/AdditionalProperties/additionalproperties/aio/operations/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/AdditionalProperties/additionalproperties/aio/operations/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/AdditionalProperties/additionalproperties/aio/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/AdditionalProperties/additionalproperties/aio/operations/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/AdditionalProperties/additionalproperties/models/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/AdditionalProperties/additionalproperties/models/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/AdditionalProperties/additionalproperties/models/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/AdditionalProperties/additionalproperties/models/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/AdditionalProperties/additionalproperties/operations/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/AdditionalProperties/additionalproperties/operations/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/AdditionalProperties/additionalproperties/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/AdditionalProperties/additionalproperties/operations/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/AdditionalProperties/setup.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/AdditionalProperties/setup.py index 708d6ea09f9..c3248500f0e 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/AdditionalProperties/setup.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/AdditionalProperties/setup.py @@ -8,7 +8,6 @@ from setuptools import setup, find_packages - PACKAGE_NAME = "additionalpropertiesclient" version = "0.1.0" diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Anything/anything/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Anything/anything/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Anything/anything/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Anything/anything/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Anything/anything/aio/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Anything/anything/aio/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Anything/anything/aio/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Anything/anything/aio/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Anything/anything/aio/operations/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Anything/anything/aio/operations/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Anything/anything/aio/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Anything/anything/aio/operations/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Anything/anything/operations/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Anything/anything/operations/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Anything/anything/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Anything/anything/operations/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Anything/setup.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Anything/setup.py index 720471e11a2..45f92248a50 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Anything/setup.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Anything/setup.py @@ -9,7 +9,6 @@ from setuptools import setup, find_packages - PACKAGE_NAME = "anythingclient" version = "0.1.0" diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyArray/bodyarray/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyArray/bodyarray/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyArray/bodyarray/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyArray/bodyarray/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyArray/bodyarray/aio/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyArray/bodyarray/aio/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyArray/bodyarray/aio/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyArray/bodyarray/aio/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyArray/bodyarray/aio/operations/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyArray/bodyarray/aio/operations/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyArray/bodyarray/aio/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyArray/bodyarray/aio/operations/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyArray/bodyarray/models/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyArray/bodyarray/models/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyArray/bodyarray/models/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyArray/bodyarray/models/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyArray/bodyarray/operations/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyArray/bodyarray/operations/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyArray/bodyarray/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyArray/bodyarray/operations/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyArray/setup.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyArray/setup.py index 5c93b4bc4c8..a4646706d29 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyArray/setup.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyArray/setup.py @@ -8,7 +8,6 @@ from setuptools import setup, find_packages - PACKAGE_NAME = "autorestswaggerbatarrayservice" version = "0.1.0" diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyArrayWithNamespaceFolders/setup.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyArrayWithNamespaceFolders/setup.py index 5c93b4bc4c8..a4646706d29 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyArrayWithNamespaceFolders/setup.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyArrayWithNamespaceFolders/setup.py @@ -8,7 +8,6 @@ from setuptools import setup, find_packages - PACKAGE_NAME = "autorestswaggerbatarrayservice" version = "0.1.0" diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyArrayWithNamespaceFolders/vanilla/body/array/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyArrayWithNamespaceFolders/vanilla/body/array/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyArrayWithNamespaceFolders/vanilla/body/array/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyArrayWithNamespaceFolders/vanilla/body/array/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyArrayWithNamespaceFolders/vanilla/body/array/aio/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyArrayWithNamespaceFolders/vanilla/body/array/aio/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyArrayWithNamespaceFolders/vanilla/body/array/aio/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyArrayWithNamespaceFolders/vanilla/body/array/aio/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyArrayWithNamespaceFolders/vanilla/body/array/aio/operations/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyArrayWithNamespaceFolders/vanilla/body/array/aio/operations/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyArrayWithNamespaceFolders/vanilla/body/array/aio/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyArrayWithNamespaceFolders/vanilla/body/array/aio/operations/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyArrayWithNamespaceFolders/vanilla/body/array/models/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyArrayWithNamespaceFolders/vanilla/body/array/models/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyArrayWithNamespaceFolders/vanilla/body/array/models/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyArrayWithNamespaceFolders/vanilla/body/array/models/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyArrayWithNamespaceFolders/vanilla/body/array/operations/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyArrayWithNamespaceFolders/vanilla/body/array/operations/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyArrayWithNamespaceFolders/vanilla/body/array/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyArrayWithNamespaceFolders/vanilla/body/array/operations/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyBinary/bodybinary/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyBinary/bodybinary/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyBinary/bodybinary/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyBinary/bodybinary/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyBinary/bodybinary/aio/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyBinary/bodybinary/aio/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyBinary/bodybinary/aio/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyBinary/bodybinary/aio/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyBinary/bodybinary/aio/operations/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyBinary/bodybinary/aio/operations/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyBinary/bodybinary/aio/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyBinary/bodybinary/aio/operations/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyBinary/bodybinary/models/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyBinary/bodybinary/models/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyBinary/bodybinary/models/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyBinary/bodybinary/models/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyBinary/bodybinary/operations/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyBinary/bodybinary/operations/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyBinary/bodybinary/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyBinary/bodybinary/operations/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyBinary/setup.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyBinary/setup.py index da6cfdbb373..23083519cf4 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyBinary/setup.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyBinary/setup.py @@ -8,7 +8,6 @@ from setuptools import setup, find_packages - PACKAGE_NAME = "binarywithcontenttypeapplicationjson" version = "0.1.0" diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyBoolean/bodyboolean/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyBoolean/bodyboolean/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyBoolean/bodyboolean/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyBoolean/bodyboolean/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyBoolean/bodyboolean/aio/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyBoolean/bodyboolean/aio/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyBoolean/bodyboolean/aio/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyBoolean/bodyboolean/aio/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyBoolean/bodyboolean/aio/operations/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyBoolean/bodyboolean/aio/operations/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyBoolean/bodyboolean/aio/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyBoolean/bodyboolean/aio/operations/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyBoolean/bodyboolean/models/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyBoolean/bodyboolean/models/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyBoolean/bodyboolean/models/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyBoolean/bodyboolean/models/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyBoolean/bodyboolean/operations/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyBoolean/bodyboolean/operations/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyBoolean/bodyboolean/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyBoolean/bodyboolean/operations/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyBoolean/setup.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyBoolean/setup.py index 20a8d56b187..327af1e1953 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyBoolean/setup.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyBoolean/setup.py @@ -8,7 +8,6 @@ from setuptools import setup, find_packages - PACKAGE_NAME = "autorestbooltestservice" version = "0.1.0" diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyByte/bodybyte/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyByte/bodybyte/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyByte/bodybyte/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyByte/bodybyte/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyByte/bodybyte/aio/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyByte/bodybyte/aio/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyByte/bodybyte/aio/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyByte/bodybyte/aio/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyByte/bodybyte/aio/operations/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyByte/bodybyte/aio/operations/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyByte/bodybyte/aio/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyByte/bodybyte/aio/operations/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyByte/bodybyte/models/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyByte/bodybyte/models/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyByte/bodybyte/models/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyByte/bodybyte/models/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyByte/bodybyte/operations/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyByte/bodybyte/operations/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyByte/bodybyte/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyByte/bodybyte/operations/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyByte/setup.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyByte/setup.py index 2786adf6a4c..26e40f3179a 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyByte/setup.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyByte/setup.py @@ -8,7 +8,6 @@ from setuptools import setup, find_packages - PACKAGE_NAME = "autorestswaggerbatbyteservice" version = "0.1.0" diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyByteWithPackageName/bodybytewithpackagename/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyByteWithPackageName/bodybytewithpackagename/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyByteWithPackageName/bodybytewithpackagename/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyByteWithPackageName/bodybytewithpackagename/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyByteWithPackageName/bodybytewithpackagename/aio/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyByteWithPackageName/bodybytewithpackagename/aio/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyByteWithPackageName/bodybytewithpackagename/aio/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyByteWithPackageName/bodybytewithpackagename/aio/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyByteWithPackageName/bodybytewithpackagename/aio/operations/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyByteWithPackageName/bodybytewithpackagename/aio/operations/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyByteWithPackageName/bodybytewithpackagename/aio/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyByteWithPackageName/bodybytewithpackagename/aio/operations/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyByteWithPackageName/bodybytewithpackagename/models/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyByteWithPackageName/bodybytewithpackagename/models/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyByteWithPackageName/bodybytewithpackagename/models/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyByteWithPackageName/bodybytewithpackagename/models/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyByteWithPackageName/bodybytewithpackagename/operations/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyByteWithPackageName/bodybytewithpackagename/operations/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyByteWithPackageName/bodybytewithpackagename/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyByteWithPackageName/bodybytewithpackagename/operations/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyByteWithPackageName/setup.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyByteWithPackageName/setup.py index b4b8269f9dd..5c0caf6c681 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyByteWithPackageName/setup.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyByteWithPackageName/setup.py @@ -8,7 +8,6 @@ from setuptools import setup, find_packages - PACKAGE_NAME = "packagename" version = "0.1.0" diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyComplex/bodycomplex/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyComplex/bodycomplex/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyComplex/bodycomplex/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyComplex/bodycomplex/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyComplex/bodycomplex/aio/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyComplex/bodycomplex/aio/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyComplex/bodycomplex/aio/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyComplex/bodycomplex/aio/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyComplex/bodycomplex/aio/operations/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyComplex/bodycomplex/aio/operations/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyComplex/bodycomplex/aio/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyComplex/bodycomplex/aio/operations/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyComplex/bodycomplex/models/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyComplex/bodycomplex/models/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyComplex/bodycomplex/models/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyComplex/bodycomplex/models/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyComplex/bodycomplex/operations/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyComplex/bodycomplex/operations/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyComplex/bodycomplex/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyComplex/bodycomplex/operations/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyComplex/setup.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyComplex/setup.py index a8f263a0d67..e9f2c8fff37 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyComplex/setup.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyComplex/setup.py @@ -8,7 +8,6 @@ from setuptools import setup, find_packages - PACKAGE_NAME = "autorestcomplextestservice" version = "0.1.0" diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyDate/bodydate/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyDate/bodydate/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyDate/bodydate/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyDate/bodydate/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyDate/bodydate/aio/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyDate/bodydate/aio/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyDate/bodydate/aio/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyDate/bodydate/aio/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyDate/bodydate/aio/operations/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyDate/bodydate/aio/operations/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyDate/bodydate/aio/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyDate/bodydate/aio/operations/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyDate/bodydate/models/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyDate/bodydate/models/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyDate/bodydate/models/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyDate/bodydate/models/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyDate/bodydate/operations/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyDate/bodydate/operations/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyDate/bodydate/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyDate/bodydate/operations/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyDate/setup.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyDate/setup.py index d9ba100c0cb..54f70b106bc 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyDate/setup.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyDate/setup.py @@ -8,7 +8,6 @@ from setuptools import setup, find_packages - PACKAGE_NAME = "autorestdatetestservice" version = "0.1.0" diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyDateTime/bodydatetime/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyDateTime/bodydatetime/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyDateTime/bodydatetime/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyDateTime/bodydatetime/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyDateTime/bodydatetime/aio/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyDateTime/bodydatetime/aio/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyDateTime/bodydatetime/aio/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyDateTime/bodydatetime/aio/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyDateTime/bodydatetime/aio/operations/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyDateTime/bodydatetime/aio/operations/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyDateTime/bodydatetime/aio/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyDateTime/bodydatetime/aio/operations/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyDateTime/bodydatetime/models/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyDateTime/bodydatetime/models/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyDateTime/bodydatetime/models/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyDateTime/bodydatetime/models/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyDateTime/bodydatetime/operations/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyDateTime/bodydatetime/operations/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyDateTime/bodydatetime/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyDateTime/bodydatetime/operations/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyDateTime/setup.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyDateTime/setup.py index 8fcb3ee4d77..19f0fea4d0a 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyDateTime/setup.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyDateTime/setup.py @@ -8,7 +8,6 @@ from setuptools import setup, find_packages - PACKAGE_NAME = "autorestdatetimetestservice" version = "0.1.0" diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyDateTimeRfc1123/bodydatetimerfc1123/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyDateTimeRfc1123/bodydatetimerfc1123/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyDateTimeRfc1123/bodydatetimerfc1123/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyDateTimeRfc1123/bodydatetimerfc1123/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyDateTimeRfc1123/bodydatetimerfc1123/aio/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyDateTimeRfc1123/bodydatetimerfc1123/aio/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyDateTimeRfc1123/bodydatetimerfc1123/aio/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyDateTimeRfc1123/bodydatetimerfc1123/aio/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyDateTimeRfc1123/bodydatetimerfc1123/aio/operations/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyDateTimeRfc1123/bodydatetimerfc1123/aio/operations/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyDateTimeRfc1123/bodydatetimerfc1123/aio/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyDateTimeRfc1123/bodydatetimerfc1123/aio/operations/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyDateTimeRfc1123/bodydatetimerfc1123/models/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyDateTimeRfc1123/bodydatetimerfc1123/models/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyDateTimeRfc1123/bodydatetimerfc1123/models/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyDateTimeRfc1123/bodydatetimerfc1123/models/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyDateTimeRfc1123/bodydatetimerfc1123/operations/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyDateTimeRfc1123/bodydatetimerfc1123/operations/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyDateTimeRfc1123/bodydatetimerfc1123/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyDateTimeRfc1123/bodydatetimerfc1123/operations/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyDateTimeRfc1123/setup.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyDateTimeRfc1123/setup.py index 7fa61b2e032..a3a8a2515ce 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyDateTimeRfc1123/setup.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyDateTimeRfc1123/setup.py @@ -8,7 +8,6 @@ from setuptools import setup, find_packages - PACKAGE_NAME = "autorestrfc1123datetimetestservice" version = "0.1.0" diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyDictionary/bodydictionary/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyDictionary/bodydictionary/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyDictionary/bodydictionary/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyDictionary/bodydictionary/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyDictionary/bodydictionary/aio/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyDictionary/bodydictionary/aio/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyDictionary/bodydictionary/aio/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyDictionary/bodydictionary/aio/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyDictionary/bodydictionary/aio/operations/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyDictionary/bodydictionary/aio/operations/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyDictionary/bodydictionary/aio/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyDictionary/bodydictionary/aio/operations/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyDictionary/bodydictionary/models/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyDictionary/bodydictionary/models/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyDictionary/bodydictionary/models/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyDictionary/bodydictionary/models/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyDictionary/bodydictionary/operations/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyDictionary/bodydictionary/operations/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyDictionary/bodydictionary/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyDictionary/bodydictionary/operations/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyDictionary/setup.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyDictionary/setup.py index 91345eef98a..5cea2d2dc8a 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyDictionary/setup.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyDictionary/setup.py @@ -8,7 +8,6 @@ from setuptools import setup, find_packages - PACKAGE_NAME = "autorestswaggerbatdictionaryservice" version = "0.1.0" diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyDuration/bodyduration/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyDuration/bodyduration/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyDuration/bodyduration/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyDuration/bodyduration/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyDuration/bodyduration/aio/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyDuration/bodyduration/aio/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyDuration/bodyduration/aio/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyDuration/bodyduration/aio/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyDuration/bodyduration/aio/operations/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyDuration/bodyduration/aio/operations/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyDuration/bodyduration/aio/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyDuration/bodyduration/aio/operations/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyDuration/bodyduration/models/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyDuration/bodyduration/models/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyDuration/bodyduration/models/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyDuration/bodyduration/models/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyDuration/bodyduration/operations/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyDuration/bodyduration/operations/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyDuration/bodyduration/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyDuration/bodyduration/operations/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyDuration/setup.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyDuration/setup.py index 3902fbc6006..f721aeacf69 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyDuration/setup.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyDuration/setup.py @@ -8,7 +8,6 @@ from setuptools import setup, find_packages - PACKAGE_NAME = "autorestdurationtestservice" version = "0.1.0" diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyFile/bodyfile/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyFile/bodyfile/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyFile/bodyfile/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyFile/bodyfile/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyFile/bodyfile/aio/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyFile/bodyfile/aio/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyFile/bodyfile/aio/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyFile/bodyfile/aio/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyFile/bodyfile/aio/operations/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyFile/bodyfile/aio/operations/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyFile/bodyfile/aio/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyFile/bodyfile/aio/operations/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyFile/bodyfile/models/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyFile/bodyfile/models/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyFile/bodyfile/models/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyFile/bodyfile/models/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyFile/bodyfile/operations/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyFile/bodyfile/operations/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyFile/bodyfile/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyFile/bodyfile/operations/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyFile/setup.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyFile/setup.py index 58522e0d67b..26d67cef4f7 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyFile/setup.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyFile/setup.py @@ -8,7 +8,6 @@ from setuptools import setup, find_packages - PACKAGE_NAME = "autorestswaggerbatfileservice" version = "0.1.0" diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyFormData/bodyformdata/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyFormData/bodyformdata/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyFormData/bodyformdata/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyFormData/bodyformdata/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyFormData/bodyformdata/aio/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyFormData/bodyformdata/aio/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyFormData/bodyformdata/aio/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyFormData/bodyformdata/aio/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyFormData/bodyformdata/aio/operations/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyFormData/bodyformdata/aio/operations/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyFormData/bodyformdata/aio/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyFormData/bodyformdata/aio/operations/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyFormData/bodyformdata/models/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyFormData/bodyformdata/models/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyFormData/bodyformdata/models/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyFormData/bodyformdata/models/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyFormData/bodyformdata/operations/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyFormData/bodyformdata/operations/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyFormData/bodyformdata/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyFormData/bodyformdata/operations/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyFormData/setup.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyFormData/setup.py index e528774182b..b0a12262b02 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyFormData/setup.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyFormData/setup.py @@ -8,7 +8,6 @@ from setuptools import setup, find_packages - PACKAGE_NAME = "autorestswaggerbatformdataservice" version = "0.1.0" diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyFormUrlEncodedData/bodyformurlencodeddata/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyFormUrlEncodedData/bodyformurlencodeddata/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyFormUrlEncodedData/bodyformurlencodeddata/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyFormUrlEncodedData/bodyformurlencodeddata/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyFormUrlEncodedData/bodyformurlencodeddata/aio/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyFormUrlEncodedData/bodyformurlencodeddata/aio/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyFormUrlEncodedData/bodyformurlencodeddata/aio/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyFormUrlEncodedData/bodyformurlencodeddata/aio/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyFormUrlEncodedData/bodyformurlencodeddata/aio/operations/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyFormUrlEncodedData/bodyformurlencodeddata/aio/operations/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyFormUrlEncodedData/bodyformurlencodeddata/aio/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyFormUrlEncodedData/bodyformurlencodeddata/aio/operations/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyFormUrlEncodedData/bodyformurlencodeddata/models/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyFormUrlEncodedData/bodyformurlencodeddata/models/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyFormUrlEncodedData/bodyformurlencodeddata/models/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyFormUrlEncodedData/bodyformurlencodeddata/models/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyFormUrlEncodedData/bodyformurlencodeddata/operations/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyFormUrlEncodedData/bodyformurlencodeddata/operations/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyFormUrlEncodedData/bodyformurlencodeddata/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyFormUrlEncodedData/bodyformurlencodeddata/operations/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyFormUrlEncodedData/setup.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyFormUrlEncodedData/setup.py index fe5b2d5b03a..6ac8049d972 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyFormUrlEncodedData/setup.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyFormUrlEncodedData/setup.py @@ -8,7 +8,6 @@ from setuptools import setup, find_packages - PACKAGE_NAME = "bodyformsdataurlencoded" version = "0.1.0" diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyInteger/bodyinteger/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyInteger/bodyinteger/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyInteger/bodyinteger/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyInteger/bodyinteger/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyInteger/bodyinteger/aio/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyInteger/bodyinteger/aio/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyInteger/bodyinteger/aio/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyInteger/bodyinteger/aio/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyInteger/bodyinteger/aio/operations/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyInteger/bodyinteger/aio/operations/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyInteger/bodyinteger/aio/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyInteger/bodyinteger/aio/operations/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyInteger/bodyinteger/models/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyInteger/bodyinteger/models/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyInteger/bodyinteger/models/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyInteger/bodyinteger/models/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyInteger/bodyinteger/operations/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyInteger/bodyinteger/operations/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyInteger/bodyinteger/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyInteger/bodyinteger/operations/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyInteger/setup.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyInteger/setup.py index a76d16b262a..30a1f48d723 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyInteger/setup.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyInteger/setup.py @@ -8,7 +8,6 @@ from setuptools import setup, find_packages - PACKAGE_NAME = "autorestintegertestservice" version = "0.1.0" diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyNumber/bodynumber/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyNumber/bodynumber/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyNumber/bodynumber/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyNumber/bodynumber/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyNumber/bodynumber/aio/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyNumber/bodynumber/aio/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyNumber/bodynumber/aio/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyNumber/bodynumber/aio/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyNumber/bodynumber/aio/operations/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyNumber/bodynumber/aio/operations/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyNumber/bodynumber/aio/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyNumber/bodynumber/aio/operations/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyNumber/bodynumber/models/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyNumber/bodynumber/models/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyNumber/bodynumber/models/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyNumber/bodynumber/models/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyNumber/bodynumber/operations/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyNumber/bodynumber/operations/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyNumber/bodynumber/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyNumber/bodynumber/operations/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyNumber/setup.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyNumber/setup.py index 3e1f1ec6331..a60980ca8b1 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyNumber/setup.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyNumber/setup.py @@ -8,7 +8,6 @@ from setuptools import setup, find_packages - PACKAGE_NAME = "autorestnumbertestservice" version = "0.1.0" diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyString/bodystring/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyString/bodystring/_patch.py index d7c2547654c..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyString/bodystring/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyString/bodystring/_patch.py @@ -1,17 +1,20 @@ -import importlib -import sys +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- +"""Customize generated code here. +Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize +""" -class PatchAddedModel(object): - pass +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): - try: - models = sys.modules["bodystring.models"] - except KeyError: - models = importlib.import_module("bodystring.models") - setattr(models, "PatchAddedModel", PatchAddedModel) + """Do not remove from this file. - -__all__ = [] + `patch_sdk` is a last resort escape hatch that allows you to do customizations + you can't accomplish using the techniques described in + https://aka.ms/azsdk/python/dpcodegen/python/customize + """ diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyString/bodystring/aio/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyString/bodystring/aio/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyString/bodystring/aio/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyString/bodystring/aio/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyString/bodystring/aio/operations/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyString/bodystring/aio/operations/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyString/bodystring/aio/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyString/bodystring/aio/operations/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyString/bodystring/models/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyString/bodystring/models/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyString/bodystring/models/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyString/bodystring/models/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyString/bodystring/operations/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyString/bodystring/operations/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyString/bodystring/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyString/bodystring/operations/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyString/setup.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyString/setup.py index 20d8244540e..d655a7e2917 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyString/setup.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyString/setup.py @@ -8,7 +8,6 @@ from setuptools import setup, find_packages - PACKAGE_NAME = "autorestswaggerbatservice" version = "0.1.0" diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyTime/bodytime/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyTime/bodytime/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyTime/bodytime/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyTime/bodytime/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyTime/bodytime/aio/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyTime/bodytime/aio/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyTime/bodytime/aio/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyTime/bodytime/aio/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyTime/bodytime/aio/operations/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyTime/bodytime/aio/operations/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyTime/bodytime/aio/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyTime/bodytime/aio/operations/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyTime/bodytime/models/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyTime/bodytime/models/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyTime/bodytime/models/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyTime/bodytime/models/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyTime/bodytime/operations/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyTime/bodytime/operations/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyTime/bodytime/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyTime/bodytime/operations/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyTime/setup.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyTime/setup.py index 2773de29cf2..bb8c19db37f 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyTime/setup.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/BodyTime/setup.py @@ -8,7 +8,6 @@ from setuptools import setup, find_packages - PACKAGE_NAME = "autoresttimetestservice" version = "0.1.0" diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ClientEnum/clientenum/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ClientEnum/clientenum/_patch.py index 49900f6ab12..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ClientEnum/clientenum/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ClientEnum/clientenum/_patch.py @@ -1,15 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ - +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ClientEnum/clientenum/aio/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ClientEnum/clientenum/aio/_patch.py index 49900f6ab12..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ClientEnum/clientenum/aio/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ClientEnum/clientenum/aio/_patch.py @@ -1,15 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ - +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ClientEnum/clientenum/aio/operations/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ClientEnum/clientenum/aio/operations/_patch.py index 49900f6ab12..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ClientEnum/clientenum/aio/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ClientEnum/clientenum/aio/operations/_patch.py @@ -1,15 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ - +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ClientEnum/clientenum/models/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ClientEnum/clientenum/models/_patch.py index 49900f6ab12..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ClientEnum/clientenum/models/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ClientEnum/clientenum/models/_patch.py @@ -1,15 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ - +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ClientEnum/clientenum/operations/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ClientEnum/clientenum/operations/_patch.py index 49900f6ab12..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ClientEnum/clientenum/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ClientEnum/clientenum/operations/_patch.py @@ -1,15 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ - +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ClientEnum/setup.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ClientEnum/setup.py index 62507af3e27..0abf28e31ab 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ClientEnum/setup.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ClientEnum/setup.py @@ -8,7 +8,6 @@ from setuptools import setup, find_packages - PACKAGE_NAME = "clientwithenum" version = "0.1.0" diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Constants/constants/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Constants/constants/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Constants/constants/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Constants/constants/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Constants/constants/aio/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Constants/constants/aio/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Constants/constants/aio/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Constants/constants/aio/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Constants/constants/aio/operations/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Constants/constants/aio/operations/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Constants/constants/aio/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Constants/constants/aio/operations/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Constants/constants/models/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Constants/constants/models/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Constants/constants/models/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Constants/constants/models/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Constants/constants/operations/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Constants/constants/operations/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Constants/constants/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Constants/constants/operations/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Constants/setup.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Constants/setup.py index 48fe9cf1240..37fc4bc01e4 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Constants/setup.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Constants/setup.py @@ -8,7 +8,6 @@ from setuptools import setup, find_packages - PACKAGE_NAME = "autorestswaggerconstantservice" version = "0.1.0" diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/CustomBaseUri/custombaseurl/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/CustomBaseUri/custombaseurl/_patch.py index 49900f6ab12..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/CustomBaseUri/custombaseurl/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/CustomBaseUri/custombaseurl/_patch.py @@ -1,15 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ - +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/CustomBaseUri/custombaseurl/aio/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/CustomBaseUri/custombaseurl/aio/_patch.py index 49900f6ab12..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/CustomBaseUri/custombaseurl/aio/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/CustomBaseUri/custombaseurl/aio/_patch.py @@ -1,15 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ - +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/CustomBaseUri/custombaseurl/aio/operations/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/CustomBaseUri/custombaseurl/aio/operations/_patch.py index 49900f6ab12..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/CustomBaseUri/custombaseurl/aio/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/CustomBaseUri/custombaseurl/aio/operations/_patch.py @@ -1,15 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ - +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/CustomBaseUri/custombaseurl/models/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/CustomBaseUri/custombaseurl/models/_patch.py index 49900f6ab12..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/CustomBaseUri/custombaseurl/models/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/CustomBaseUri/custombaseurl/models/_patch.py @@ -1,15 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ - +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/CustomBaseUri/custombaseurl/operations/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/CustomBaseUri/custombaseurl/operations/_patch.py index 49900f6ab12..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/CustomBaseUri/custombaseurl/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/CustomBaseUri/custombaseurl/operations/_patch.py @@ -1,15 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ - +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/CustomBaseUri/setup.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/CustomBaseUri/setup.py index 1bc312dc472..19c691ad4e5 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/CustomBaseUri/setup.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/CustomBaseUri/setup.py @@ -8,7 +8,6 @@ from setuptools import setup, find_packages - PACKAGE_NAME = "autorestparameterizedhosttestclient" version = "0.1.0" diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/CustomBaseUriMoreOptions/custombaseurlmoreoptions/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/CustomBaseUriMoreOptions/custombaseurlmoreoptions/_patch.py index 49900f6ab12..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/CustomBaseUriMoreOptions/custombaseurlmoreoptions/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/CustomBaseUriMoreOptions/custombaseurlmoreoptions/_patch.py @@ -1,15 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ - +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/CustomBaseUriMoreOptions/custombaseurlmoreoptions/aio/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/CustomBaseUriMoreOptions/custombaseurlmoreoptions/aio/_patch.py index 49900f6ab12..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/CustomBaseUriMoreOptions/custombaseurlmoreoptions/aio/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/CustomBaseUriMoreOptions/custombaseurlmoreoptions/aio/_patch.py @@ -1,15 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ - +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/CustomBaseUriMoreOptions/custombaseurlmoreoptions/aio/operations/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/CustomBaseUriMoreOptions/custombaseurlmoreoptions/aio/operations/_patch.py index 49900f6ab12..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/CustomBaseUriMoreOptions/custombaseurlmoreoptions/aio/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/CustomBaseUriMoreOptions/custombaseurlmoreoptions/aio/operations/_patch.py @@ -1,15 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ - +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/CustomBaseUriMoreOptions/custombaseurlmoreoptions/models/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/CustomBaseUriMoreOptions/custombaseurlmoreoptions/models/_patch.py index 49900f6ab12..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/CustomBaseUriMoreOptions/custombaseurlmoreoptions/models/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/CustomBaseUriMoreOptions/custombaseurlmoreoptions/models/_patch.py @@ -1,15 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ - +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/CustomBaseUriMoreOptions/custombaseurlmoreoptions/operations/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/CustomBaseUriMoreOptions/custombaseurlmoreoptions/operations/_patch.py index 49900f6ab12..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/CustomBaseUriMoreOptions/custombaseurlmoreoptions/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/CustomBaseUriMoreOptions/custombaseurlmoreoptions/operations/_patch.py @@ -1,15 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ - +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/CustomBaseUriMoreOptions/setup.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/CustomBaseUriMoreOptions/setup.py index aab082215cd..4f100126f94 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/CustomBaseUriMoreOptions/setup.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/CustomBaseUriMoreOptions/setup.py @@ -8,7 +8,6 @@ from setuptools import setup, find_packages - PACKAGE_NAME = "autorestparameterizedcustomhosttestclient" version = "0.1.0" diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ErrorWithSecrets/errorwithsecrets/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ErrorWithSecrets/errorwithsecrets/_patch.py index 49900f6ab12..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ErrorWithSecrets/errorwithsecrets/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ErrorWithSecrets/errorwithsecrets/_patch.py @@ -1,15 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ - +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ErrorWithSecrets/errorwithsecrets/aio/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ErrorWithSecrets/errorwithsecrets/aio/_patch.py index 49900f6ab12..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ErrorWithSecrets/errorwithsecrets/aio/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ErrorWithSecrets/errorwithsecrets/aio/_patch.py @@ -1,15 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ - +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ErrorWithSecrets/errorwithsecrets/aio/operations/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ErrorWithSecrets/errorwithsecrets/aio/operations/_patch.py index 49900f6ab12..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ErrorWithSecrets/errorwithsecrets/aio/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ErrorWithSecrets/errorwithsecrets/aio/operations/_patch.py @@ -1,15 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ - +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ErrorWithSecrets/errorwithsecrets/models/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ErrorWithSecrets/errorwithsecrets/models/_patch.py index 49900f6ab12..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ErrorWithSecrets/errorwithsecrets/models/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ErrorWithSecrets/errorwithsecrets/models/_patch.py @@ -1,15 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ - +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ErrorWithSecrets/errorwithsecrets/operations/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ErrorWithSecrets/errorwithsecrets/operations/_patch.py index 49900f6ab12..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ErrorWithSecrets/errorwithsecrets/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ErrorWithSecrets/errorwithsecrets/operations/_patch.py @@ -1,15 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ - +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ErrorWithSecrets/setup.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ErrorWithSecrets/setup.py index c016a619467..7bffd139d93 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ErrorWithSecrets/setup.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ErrorWithSecrets/setup.py @@ -8,7 +8,6 @@ from setuptools import setup, find_packages - PACKAGE_NAME = "errorwithsecrets" version = "0.1.0" diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ExtensibleEnums/extensibleenumsswagger/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ExtensibleEnums/extensibleenumsswagger/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ExtensibleEnums/extensibleenumsswagger/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ExtensibleEnums/extensibleenumsswagger/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ExtensibleEnums/extensibleenumsswagger/aio/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ExtensibleEnums/extensibleenumsswagger/aio/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ExtensibleEnums/extensibleenumsswagger/aio/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ExtensibleEnums/extensibleenumsswagger/aio/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ExtensibleEnums/extensibleenumsswagger/aio/operations/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ExtensibleEnums/extensibleenumsswagger/aio/operations/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ExtensibleEnums/extensibleenumsswagger/aio/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ExtensibleEnums/extensibleenumsswagger/aio/operations/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ExtensibleEnums/extensibleenumsswagger/models/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ExtensibleEnums/extensibleenumsswagger/models/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ExtensibleEnums/extensibleenumsswagger/models/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ExtensibleEnums/extensibleenumsswagger/models/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ExtensibleEnums/extensibleenumsswagger/operations/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ExtensibleEnums/extensibleenumsswagger/operations/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ExtensibleEnums/extensibleenumsswagger/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ExtensibleEnums/extensibleenumsswagger/operations/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ExtensibleEnums/setup.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ExtensibleEnums/setup.py index 41041f3e244..25a2b681ee3 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ExtensibleEnums/setup.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ExtensibleEnums/setup.py @@ -8,7 +8,6 @@ from setuptools import setup, find_packages - PACKAGE_NAME = "petstoreinc" version = "0.1.0" diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Header/header/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Header/header/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Header/header/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Header/header/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Header/header/aio/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Header/header/aio/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Header/header/aio/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Header/header/aio/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Header/header/aio/operations/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Header/header/aio/operations/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Header/header/aio/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Header/header/aio/operations/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Header/header/models/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Header/header/models/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Header/header/models/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Header/header/models/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Header/header/operations/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Header/header/operations/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Header/header/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Header/header/operations/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Header/setup.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Header/setup.py index 7220cd67e21..1ebd98cd0be 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Header/setup.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Header/setup.py @@ -8,7 +8,6 @@ from setuptools import setup, find_packages - PACKAGE_NAME = "autorestswaggerbatheaderservice" version = "0.1.0" diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Http/httpinfrastructure/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Http/httpinfrastructure/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Http/httpinfrastructure/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Http/httpinfrastructure/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Http/httpinfrastructure/aio/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Http/httpinfrastructure/aio/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Http/httpinfrastructure/aio/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Http/httpinfrastructure/aio/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Http/httpinfrastructure/aio/operations/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Http/httpinfrastructure/aio/operations/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Http/httpinfrastructure/aio/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Http/httpinfrastructure/aio/operations/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Http/httpinfrastructure/models/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Http/httpinfrastructure/models/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Http/httpinfrastructure/models/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Http/httpinfrastructure/models/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Http/httpinfrastructure/operations/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Http/httpinfrastructure/operations/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Http/httpinfrastructure/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Http/httpinfrastructure/operations/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Http/setup.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Http/setup.py index f80fec31ada..5d1704d787f 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Http/setup.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Http/setup.py @@ -8,7 +8,6 @@ from setuptools import setup, find_packages - PACKAGE_NAME = "autoresthttpinfrastructuretestservice" version = "0.1.0" diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/IncorrectErrorResponse/incorrecterrorresponse/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/IncorrectErrorResponse/incorrecterrorresponse/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/IncorrectErrorResponse/incorrecterrorresponse/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/IncorrectErrorResponse/incorrecterrorresponse/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/IncorrectErrorResponse/incorrecterrorresponse/aio/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/IncorrectErrorResponse/incorrecterrorresponse/aio/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/IncorrectErrorResponse/incorrecterrorresponse/aio/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/IncorrectErrorResponse/incorrecterrorresponse/aio/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/IncorrectErrorResponse/incorrecterrorresponse/aio/operations/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/IncorrectErrorResponse/incorrecterrorresponse/aio/operations/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/IncorrectErrorResponse/incorrecterrorresponse/aio/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/IncorrectErrorResponse/incorrecterrorresponse/aio/operations/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/IncorrectErrorResponse/incorrecterrorresponse/models/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/IncorrectErrorResponse/incorrecterrorresponse/models/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/IncorrectErrorResponse/incorrecterrorresponse/models/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/IncorrectErrorResponse/incorrecterrorresponse/models/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/IncorrectErrorResponse/incorrecterrorresponse/operations/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/IncorrectErrorResponse/incorrecterrorresponse/operations/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/IncorrectErrorResponse/incorrecterrorresponse/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/IncorrectErrorResponse/incorrecterrorresponse/operations/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/IncorrectErrorResponse/setup.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/IncorrectErrorResponse/setup.py index 414044f4ee2..f0685714c56 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/IncorrectErrorResponse/setup.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/IncorrectErrorResponse/setup.py @@ -8,7 +8,6 @@ from setuptools import setup, find_packages - PACKAGE_NAME = "incorrectreturnederrormodel" version = "0.1.0" diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/InternalOperation/internaloperation/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/InternalOperation/internaloperation/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/InternalOperation/internaloperation/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/InternalOperation/internaloperation/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/InternalOperation/internaloperation/aio/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/InternalOperation/internaloperation/aio/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/InternalOperation/internaloperation/aio/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/InternalOperation/internaloperation/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/InternalOperation/internaloperation/aio/operations/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/InternalOperation/internaloperation/aio/operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/InternalOperation/internaloperation/aio/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/InternalOperation/internaloperation/aio/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/InternalOperation/internaloperation/models/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/InternalOperation/internaloperation/models/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/InternalOperation/internaloperation/models/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/InternalOperation/internaloperation/models/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/InternalOperation/internaloperation/operations/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/InternalOperation/internaloperation/operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/InternalOperation/internaloperation/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/InternalOperation/internaloperation/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/MediaTypes/mediatypes/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/MediaTypes/mediatypes/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/MediaTypes/mediatypes/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/MediaTypes/mediatypes/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/MediaTypes/mediatypes/aio/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/MediaTypes/mediatypes/aio/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/MediaTypes/mediatypes/aio/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/MediaTypes/mediatypes/aio/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/MediaTypes/mediatypes/aio/operations/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/MediaTypes/mediatypes/aio/operations/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/MediaTypes/mediatypes/aio/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/MediaTypes/mediatypes/aio/operations/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/MediaTypes/mediatypes/models/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/MediaTypes/mediatypes/models/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/MediaTypes/mediatypes/models/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/MediaTypes/mediatypes/models/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/MediaTypes/mediatypes/operations/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/MediaTypes/mediatypes/operations/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/MediaTypes/mediatypes/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/MediaTypes/mediatypes/operations/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/MediaTypes/setup.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/MediaTypes/setup.py index 17f9c4b7252..0476a6dc335 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/MediaTypes/setup.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/MediaTypes/setup.py @@ -8,7 +8,6 @@ from setuptools import setup, find_packages - PACKAGE_NAME = "mediatypesclient" version = "0.1.0" diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/MergePatchJson/mergepatchjson/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/MergePatchJson/mergepatchjson/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/MergePatchJson/mergepatchjson/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/MergePatchJson/mergepatchjson/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/MergePatchJson/mergepatchjson/aio/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/MergePatchJson/mergepatchjson/aio/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/MergePatchJson/mergepatchjson/aio/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/MergePatchJson/mergepatchjson/aio/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/MergePatchJson/mergepatchjson/aio/operations/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/MergePatchJson/mergepatchjson/aio/operations/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/MergePatchJson/mergepatchjson/aio/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/MergePatchJson/mergepatchjson/aio/operations/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/MergePatchJson/mergepatchjson/operations/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/MergePatchJson/mergepatchjson/operations/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/MergePatchJson/mergepatchjson/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/MergePatchJson/mergepatchjson/operations/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/MergePatchJson/setup.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/MergePatchJson/setup.py index 24682ccbd2f..c1d6be027eb 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/MergePatchJson/setup.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/MergePatchJson/setup.py @@ -8,7 +8,6 @@ from setuptools import setup, find_packages - PACKAGE_NAME = "mergepatchjsonclient" version = "0.1.0" diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ModelFlattening/modelflattening/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ModelFlattening/modelflattening/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ModelFlattening/modelflattening/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ModelFlattening/modelflattening/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ModelFlattening/modelflattening/aio/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ModelFlattening/modelflattening/aio/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ModelFlattening/modelflattening/aio/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ModelFlattening/modelflattening/aio/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ModelFlattening/modelflattening/aio/operations/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ModelFlattening/modelflattening/aio/operations/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ModelFlattening/modelflattening/aio/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ModelFlattening/modelflattening/aio/operations/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ModelFlattening/modelflattening/models/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ModelFlattening/modelflattening/models/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ModelFlattening/modelflattening/models/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ModelFlattening/modelflattening/models/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ModelFlattening/modelflattening/operations/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ModelFlattening/modelflattening/operations/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ModelFlattening/modelflattening/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ModelFlattening/modelflattening/operations/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ModelFlattening/setup.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ModelFlattening/setup.py index 96e4ed7ae34..ecc3ce5ed4b 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ModelFlattening/setup.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ModelFlattening/setup.py @@ -8,7 +8,6 @@ from setuptools import setup, find_packages - PACKAGE_NAME = "autorestresourceflatteningtestservice" version = "0.1.0" diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/MultipleInheritance/multipleinheritance/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/MultipleInheritance/multipleinheritance/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/MultipleInheritance/multipleinheritance/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/MultipleInheritance/multipleinheritance/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/MultipleInheritance/multipleinheritance/aio/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/MultipleInheritance/multipleinheritance/aio/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/MultipleInheritance/multipleinheritance/aio/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/MultipleInheritance/multipleinheritance/aio/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/MultipleInheritance/multipleinheritance/aio/operations/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/MultipleInheritance/multipleinheritance/aio/operations/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/MultipleInheritance/multipleinheritance/aio/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/MultipleInheritance/multipleinheritance/aio/operations/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/MultipleInheritance/multipleinheritance/models/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/MultipleInheritance/multipleinheritance/models/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/MultipleInheritance/multipleinheritance/models/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/MultipleInheritance/multipleinheritance/models/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/MultipleInheritance/multipleinheritance/operations/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/MultipleInheritance/multipleinheritance/operations/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/MultipleInheritance/multipleinheritance/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/MultipleInheritance/multipleinheritance/operations/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/MultipleInheritance/setup.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/MultipleInheritance/setup.py index 65ce30c1474..106241853f4 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/MultipleInheritance/setup.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/MultipleInheritance/setup.py @@ -8,7 +8,6 @@ from setuptools import setup, find_packages - PACKAGE_NAME = "multipleinheritanceserviceclient" version = "0.1.0" diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/NoOperations/nooperations/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/NoOperations/nooperations/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/NoOperations/nooperations/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/NoOperations/nooperations/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/NoOperations/nooperations/models/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/NoOperations/nooperations/models/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/NoOperations/nooperations/models/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/NoOperations/nooperations/models/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/NoOperations/setup.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/NoOperations/setup.py index 6bb683a96d7..649479281fb 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/NoOperations/setup.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/NoOperations/setup.py @@ -8,7 +8,6 @@ from setuptools import setup, find_packages - PACKAGE_NAME = "nooperationsserviceclient" version = "0.1.0" diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/NonStringEnums/nonstringenums/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/NonStringEnums/nonstringenums/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/NonStringEnums/nonstringenums/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/NonStringEnums/nonstringenums/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/NonStringEnums/nonstringenums/aio/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/NonStringEnums/nonstringenums/aio/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/NonStringEnums/nonstringenums/aio/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/NonStringEnums/nonstringenums/aio/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/NonStringEnums/nonstringenums/aio/operations/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/NonStringEnums/nonstringenums/aio/operations/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/NonStringEnums/nonstringenums/aio/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/NonStringEnums/nonstringenums/aio/operations/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/NonStringEnums/nonstringenums/models/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/NonStringEnums/nonstringenums/models/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/NonStringEnums/nonstringenums/models/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/NonStringEnums/nonstringenums/models/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/NonStringEnums/nonstringenums/operations/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/NonStringEnums/nonstringenums/operations/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/NonStringEnums/nonstringenums/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/NonStringEnums/nonstringenums/operations/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/NonStringEnums/setup.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/NonStringEnums/setup.py index 930e6407d7d..ac7b760933b 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/NonStringEnums/setup.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/NonStringEnums/setup.py @@ -8,7 +8,6 @@ from setuptools import setup, find_packages - PACKAGE_NAME = "nonstringenumsclient" version = "0.1.0" diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ObjectType/objecttype/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ObjectType/objecttype/_patch.py index 49900f6ab12..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ObjectType/objecttype/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ObjectType/objecttype/_patch.py @@ -1,15 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ - +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ObjectType/objecttype/aio/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ObjectType/objecttype/aio/_patch.py index 49900f6ab12..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ObjectType/objecttype/aio/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ObjectType/objecttype/aio/_patch.py @@ -1,15 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ - +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ObjectType/objecttype/aio/operations/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ObjectType/objecttype/aio/operations/_patch.py index 49900f6ab12..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ObjectType/objecttype/aio/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ObjectType/objecttype/aio/operations/_patch.py @@ -1,15 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ - +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ObjectType/objecttype/operations/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ObjectType/objecttype/operations/_patch.py index 49900f6ab12..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ObjectType/objecttype/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ObjectType/objecttype/operations/_patch.py @@ -1,15 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ - +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ObjectType/setup.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ObjectType/setup.py index 61ca91f962f..01c7500f357 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ObjectType/setup.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ObjectType/setup.py @@ -8,7 +8,6 @@ from setuptools import setup, find_packages - PACKAGE_NAME = "objecttypeclient" version = "0.1.0" diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/PackageModeDataPlane/packagemode/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/PackageModeDataPlane/packagemode/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/PackageModeDataPlane/packagemode/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/PackageModeDataPlane/packagemode/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/PackageModeDataPlane/packagemode/aio/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/PackageModeDataPlane/packagemode/aio/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/PackageModeDataPlane/packagemode/aio/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/PackageModeDataPlane/packagemode/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/PackageModeDataPlane/packagemode/aio/operations/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/PackageModeDataPlane/packagemode/aio/operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/PackageModeDataPlane/packagemode/aio/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/PackageModeDataPlane/packagemode/aio/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/PackageModeDataPlane/packagemode/operations/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/PackageModeDataPlane/packagemode/operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/PackageModeDataPlane/packagemode/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/PackageModeDataPlane/packagemode/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ParameterFlattening/parameterflattening/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ParameterFlattening/parameterflattening/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ParameterFlattening/parameterflattening/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ParameterFlattening/parameterflattening/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ParameterFlattening/parameterflattening/aio/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ParameterFlattening/parameterflattening/aio/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ParameterFlattening/parameterflattening/aio/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ParameterFlattening/parameterflattening/aio/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ParameterFlattening/parameterflattening/aio/operations/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ParameterFlattening/parameterflattening/aio/operations/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ParameterFlattening/parameterflattening/aio/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ParameterFlattening/parameterflattening/aio/operations/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ParameterFlattening/parameterflattening/models/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ParameterFlattening/parameterflattening/models/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ParameterFlattening/parameterflattening/models/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ParameterFlattening/parameterflattening/models/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ParameterFlattening/parameterflattening/operations/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ParameterFlattening/parameterflattening/operations/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ParameterFlattening/parameterflattening/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ParameterFlattening/parameterflattening/operations/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ParameterFlattening/setup.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ParameterFlattening/setup.py index 0dbf2cb1c55..ecc852cb591 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ParameterFlattening/setup.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ParameterFlattening/setup.py @@ -8,7 +8,6 @@ from setuptools import setup, find_packages - PACKAGE_NAME = "autorestparameterflattening" version = "0.1.0" diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ParameterizedEndpoint/parameterizedendpoint/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ParameterizedEndpoint/parameterizedendpoint/_patch.py index 49900f6ab12..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ParameterizedEndpoint/parameterizedendpoint/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ParameterizedEndpoint/parameterizedendpoint/_patch.py @@ -1,15 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ - +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ParameterizedEndpoint/parameterizedendpoint/aio/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ParameterizedEndpoint/parameterizedendpoint/aio/_patch.py index 49900f6ab12..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ParameterizedEndpoint/parameterizedendpoint/aio/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ParameterizedEndpoint/parameterizedendpoint/aio/_patch.py @@ -1,15 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ - +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ParameterizedEndpoint/parameterizedendpoint/aio/operations/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ParameterizedEndpoint/parameterizedendpoint/aio/operations/_patch.py index 49900f6ab12..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ParameterizedEndpoint/parameterizedendpoint/aio/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ParameterizedEndpoint/parameterizedendpoint/aio/operations/_patch.py @@ -1,15 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ - +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ParameterizedEndpoint/parameterizedendpoint/operations/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ParameterizedEndpoint/parameterizedendpoint/operations/_patch.py index 49900f6ab12..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ParameterizedEndpoint/parameterizedendpoint/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ParameterizedEndpoint/parameterizedendpoint/operations/_patch.py @@ -1,15 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ - +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ParameterizedEndpoint/setup.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ParameterizedEndpoint/setup.py index 428c21c8f57..c1f03fe870b 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ParameterizedEndpoint/setup.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ParameterizedEndpoint/setup.py @@ -8,7 +8,6 @@ from setuptools import setup, find_packages - PACKAGE_NAME = "parmaterizedendpointclient" version = "0.1.0" diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Report/report/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Report/report/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Report/report/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Report/report/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Report/report/aio/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Report/report/aio/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Report/report/aio/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Report/report/aio/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Report/report/aio/operations/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Report/report/aio/operations/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Report/report/aio/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Report/report/aio/operations/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Report/report/models/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Report/report/models/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Report/report/models/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Report/report/models/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Report/report/operations/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Report/report/operations/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Report/report/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Report/report/operations/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Report/setup.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Report/setup.py index 66d07493d2b..1267837c19c 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Report/setup.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Report/setup.py @@ -8,7 +8,6 @@ from setuptools import setup, find_packages - PACKAGE_NAME = "autorestreportservice" version = "0.1.0" diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/RequiredOptional/requiredoptional/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/RequiredOptional/requiredoptional/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/RequiredOptional/requiredoptional/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/RequiredOptional/requiredoptional/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/RequiredOptional/requiredoptional/aio/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/RequiredOptional/requiredoptional/aio/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/RequiredOptional/requiredoptional/aio/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/RequiredOptional/requiredoptional/aio/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/RequiredOptional/requiredoptional/aio/operations/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/RequiredOptional/requiredoptional/aio/operations/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/RequiredOptional/requiredoptional/aio/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/RequiredOptional/requiredoptional/aio/operations/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/RequiredOptional/requiredoptional/models/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/RequiredOptional/requiredoptional/models/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/RequiredOptional/requiredoptional/models/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/RequiredOptional/requiredoptional/models/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/RequiredOptional/requiredoptional/operations/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/RequiredOptional/requiredoptional/operations/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/RequiredOptional/requiredoptional/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/RequiredOptional/requiredoptional/operations/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/RequiredOptional/setup.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/RequiredOptional/setup.py index 56cb9592bf5..8cbe2678229 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/RequiredOptional/setup.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/RequiredOptional/setup.py @@ -8,7 +8,6 @@ from setuptools import setup, find_packages - PACKAGE_NAME = "autorestrequiredoptionaltestservice" version = "0.1.0" diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ReservedWords/reservedwords/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ReservedWords/reservedwords/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ReservedWords/reservedwords/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ReservedWords/reservedwords/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ReservedWords/reservedwords/aio/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ReservedWords/reservedwords/aio/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ReservedWords/reservedwords/aio/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ReservedWords/reservedwords/aio/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ReservedWords/reservedwords/aio/operations/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ReservedWords/reservedwords/aio/operations/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ReservedWords/reservedwords/aio/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ReservedWords/reservedwords/aio/operations/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ReservedWords/reservedwords/models/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ReservedWords/reservedwords/models/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ReservedWords/reservedwords/models/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ReservedWords/reservedwords/models/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ReservedWords/reservedwords/operations/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ReservedWords/reservedwords/operations/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ReservedWords/reservedwords/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ReservedWords/reservedwords/operations/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ReservedWords/setup.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ReservedWords/setup.py index d78c7dee390..22425592a4e 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ReservedWords/setup.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/ReservedWords/setup.py @@ -8,7 +8,6 @@ from setuptools import setup, find_packages - PACKAGE_NAME = "reservedwordsclient" version = "0.1.0" diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/SecurityAadSwagger/securityaadswagger/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/SecurityAadSwagger/securityaadswagger/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/SecurityAadSwagger/securityaadswagger/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/SecurityAadSwagger/securityaadswagger/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/SecurityAadSwagger/securityaadswagger/aio/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/SecurityAadSwagger/securityaadswagger/aio/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/SecurityAadSwagger/securityaadswagger/aio/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/SecurityAadSwagger/securityaadswagger/aio/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/SecurityAadSwagger/securityaadswagger/aio/operations/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/SecurityAadSwagger/securityaadswagger/aio/operations/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/SecurityAadSwagger/securityaadswagger/aio/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/SecurityAadSwagger/securityaadswagger/aio/operations/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/SecurityAadSwagger/securityaadswagger/operations/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/SecurityAadSwagger/securityaadswagger/operations/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/SecurityAadSwagger/securityaadswagger/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/SecurityAadSwagger/securityaadswagger/operations/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/SecurityAadSwagger/setup.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/SecurityAadSwagger/setup.py index a8f2d219068..f669b17405a 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/SecurityAadSwagger/setup.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/SecurityAadSwagger/setup.py @@ -8,7 +8,6 @@ from setuptools import setup, find_packages - PACKAGE_NAME = "autorestsecurityaad" version = "0.1.0" diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/SecurityAadSwaggerCredentialFlag/securityaadswaggercredentialflag/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/SecurityAadSwaggerCredentialFlag/securityaadswaggercredentialflag/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/SecurityAadSwaggerCredentialFlag/securityaadswaggercredentialflag/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/SecurityAadSwaggerCredentialFlag/securityaadswaggercredentialflag/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/SecurityAadSwaggerCredentialFlag/securityaadswaggercredentialflag/aio/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/SecurityAadSwaggerCredentialFlag/securityaadswaggercredentialflag/aio/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/SecurityAadSwaggerCredentialFlag/securityaadswaggercredentialflag/aio/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/SecurityAadSwaggerCredentialFlag/securityaadswaggercredentialflag/aio/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/SecurityAadSwaggerCredentialFlag/securityaadswaggercredentialflag/aio/operations/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/SecurityAadSwaggerCredentialFlag/securityaadswaggercredentialflag/aio/operations/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/SecurityAadSwaggerCredentialFlag/securityaadswaggercredentialflag/aio/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/SecurityAadSwaggerCredentialFlag/securityaadswaggercredentialflag/aio/operations/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/SecurityAadSwaggerCredentialFlag/securityaadswaggercredentialflag/operations/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/SecurityAadSwaggerCredentialFlag/securityaadswaggercredentialflag/operations/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/SecurityAadSwaggerCredentialFlag/securityaadswaggercredentialflag/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/SecurityAadSwaggerCredentialFlag/securityaadswaggercredentialflag/operations/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/SecurityAadSwaggerCredentialFlag/setup.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/SecurityAadSwaggerCredentialFlag/setup.py index fe101331598..951f8b03aca 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/SecurityAadSwaggerCredentialFlag/setup.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/SecurityAadSwaggerCredentialFlag/setup.py @@ -8,7 +8,6 @@ from setuptools import setup, find_packages - PACKAGE_NAME = "securityaadswaggercredentialflag" version = "0.1.0" diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/SecurityKeySwagger/securitykeyswagger/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/SecurityKeySwagger/securitykeyswagger/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/SecurityKeySwagger/securitykeyswagger/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/SecurityKeySwagger/securitykeyswagger/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/SecurityKeySwagger/securitykeyswagger/aio/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/SecurityKeySwagger/securitykeyswagger/aio/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/SecurityKeySwagger/securitykeyswagger/aio/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/SecurityKeySwagger/securitykeyswagger/aio/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/SecurityKeySwagger/securitykeyswagger/aio/operations/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/SecurityKeySwagger/securitykeyswagger/aio/operations/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/SecurityKeySwagger/securitykeyswagger/aio/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/SecurityKeySwagger/securitykeyswagger/aio/operations/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/SecurityKeySwagger/securitykeyswagger/operations/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/SecurityKeySwagger/securitykeyswagger/operations/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/SecurityKeySwagger/securitykeyswagger/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/SecurityKeySwagger/securitykeyswagger/operations/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/SecurityKeySwagger/setup.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/SecurityKeySwagger/setup.py index f5cdf906960..4dc440cb844 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/SecurityKeySwagger/setup.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/SecurityKeySwagger/setup.py @@ -8,7 +8,6 @@ from setuptools import setup, find_packages - PACKAGE_NAME = "autorestsecuritykey" version = "0.1.0" diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/SecurityKeySwaggerCredentialFlag/securitykeyswaggercredentialflag/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/SecurityKeySwaggerCredentialFlag/securitykeyswaggercredentialflag/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/SecurityKeySwaggerCredentialFlag/securitykeyswaggercredentialflag/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/SecurityKeySwaggerCredentialFlag/securitykeyswaggercredentialflag/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/SecurityKeySwaggerCredentialFlag/securitykeyswaggercredentialflag/aio/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/SecurityKeySwaggerCredentialFlag/securitykeyswaggercredentialflag/aio/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/SecurityKeySwaggerCredentialFlag/securitykeyswaggercredentialflag/aio/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/SecurityKeySwaggerCredentialFlag/securitykeyswaggercredentialflag/aio/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/SecurityKeySwaggerCredentialFlag/securitykeyswaggercredentialflag/aio/operations/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/SecurityKeySwaggerCredentialFlag/securitykeyswaggercredentialflag/aio/operations/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/SecurityKeySwaggerCredentialFlag/securitykeyswaggercredentialflag/aio/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/SecurityKeySwaggerCredentialFlag/securitykeyswaggercredentialflag/aio/operations/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/SecurityKeySwaggerCredentialFlag/securitykeyswaggercredentialflag/operations/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/SecurityKeySwaggerCredentialFlag/securitykeyswaggercredentialflag/operations/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/SecurityKeySwaggerCredentialFlag/securitykeyswaggercredentialflag/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/SecurityKeySwaggerCredentialFlag/securitykeyswaggercredentialflag/operations/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/SecurityKeySwaggerCredentialFlag/setup.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/SecurityKeySwaggerCredentialFlag/setup.py index 226a03bd88a..7e1a5dd9ef7 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/SecurityKeySwaggerCredentialFlag/setup.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/SecurityKeySwaggerCredentialFlag/setup.py @@ -8,7 +8,6 @@ from setuptools import setup, find_packages - PACKAGE_NAME = "securitykeyswaggercredentialflag" version = "0.1.0" diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Url/setup.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Url/setup.py index 24d721ea860..c6cb0a4f546 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Url/setup.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Url/setup.py @@ -8,7 +8,6 @@ from setuptools import setup, find_packages - PACKAGE_NAME = "autoresturltestservice" version = "0.1.0" diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Url/url/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Url/url/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Url/url/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Url/url/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Url/url/aio/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Url/url/aio/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Url/url/aio/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Url/url/aio/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Url/url/aio/operations/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Url/url/aio/operations/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Url/url/aio/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Url/url/aio/operations/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Url/url/models/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Url/url/models/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Url/url/models/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Url/url/models/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Url/url/operations/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Url/url/operations/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Url/url/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Url/url/operations/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/UrlMultiCollectionFormat/setup.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/UrlMultiCollectionFormat/setup.py index c0aa5918898..fec5875a951 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/UrlMultiCollectionFormat/setup.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/UrlMultiCollectionFormat/setup.py @@ -8,7 +8,6 @@ from setuptools import setup, find_packages - PACKAGE_NAME = "autoresturlmutlicollectionformattestservice" version = "0.1.0" diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/UrlMultiCollectionFormat/urlmulticollectionformat/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/UrlMultiCollectionFormat/urlmulticollectionformat/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/UrlMultiCollectionFormat/urlmulticollectionformat/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/UrlMultiCollectionFormat/urlmulticollectionformat/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/UrlMultiCollectionFormat/urlmulticollectionformat/aio/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/UrlMultiCollectionFormat/urlmulticollectionformat/aio/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/UrlMultiCollectionFormat/urlmulticollectionformat/aio/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/UrlMultiCollectionFormat/urlmulticollectionformat/aio/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/UrlMultiCollectionFormat/urlmulticollectionformat/aio/operations/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/UrlMultiCollectionFormat/urlmulticollectionformat/aio/operations/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/UrlMultiCollectionFormat/urlmulticollectionformat/aio/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/UrlMultiCollectionFormat/urlmulticollectionformat/aio/operations/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/UrlMultiCollectionFormat/urlmulticollectionformat/models/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/UrlMultiCollectionFormat/urlmulticollectionformat/models/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/UrlMultiCollectionFormat/urlmulticollectionformat/models/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/UrlMultiCollectionFormat/urlmulticollectionformat/models/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/UrlMultiCollectionFormat/urlmulticollectionformat/operations/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/UrlMultiCollectionFormat/urlmulticollectionformat/operations/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/UrlMultiCollectionFormat/urlmulticollectionformat/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/UrlMultiCollectionFormat/urlmulticollectionformat/operations/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Validation/setup.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Validation/setup.py index 1a96b553903..2f433f54c4a 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Validation/setup.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Validation/setup.py @@ -8,7 +8,6 @@ from setuptools import setup, find_packages - PACKAGE_NAME = "autorestvalidationtest" version = "0.1.0" diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Validation/validation/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Validation/validation/_patch.py index 49900f6ab12..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Validation/validation/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Validation/validation/_patch.py @@ -1,15 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ - +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Validation/validation/aio/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Validation/validation/aio/_patch.py index 49900f6ab12..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Validation/validation/aio/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Validation/validation/aio/_patch.py @@ -1,15 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ - +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Validation/validation/aio/operations/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Validation/validation/aio/operations/_patch.py index 49900f6ab12..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Validation/validation/aio/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Validation/validation/aio/operations/_patch.py @@ -1,15 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ - +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Validation/validation/models/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Validation/validation/models/_patch.py index 49900f6ab12..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Validation/validation/models/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Validation/validation/models/_patch.py @@ -1,15 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ - +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Validation/validation/operations/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Validation/validation/operations/_patch.py index 49900f6ab12..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Validation/validation/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Validation/validation/operations/_patch.py @@ -1,15 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ - +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Xml/setup.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Xml/setup.py index 9b979ba7218..fc400ae5604 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Xml/setup.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Xml/setup.py @@ -8,7 +8,6 @@ from setuptools import setup, find_packages - PACKAGE_NAME = "autorestswaggerbatxmlservice" version = "0.1.0" diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Xml/xmlservice/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Xml/xmlservice/_patch.py index 49900f6ab12..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Xml/xmlservice/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Xml/xmlservice/_patch.py @@ -1,15 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ - +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Xml/xmlservice/aio/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Xml/xmlservice/aio/_patch.py index 49900f6ab12..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Xml/xmlservice/aio/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Xml/xmlservice/aio/_patch.py @@ -1,15 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ - +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Xml/xmlservice/aio/operations/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Xml/xmlservice/aio/operations/_patch.py index 49900f6ab12..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Xml/xmlservice/aio/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Xml/xmlservice/aio/operations/_patch.py @@ -1,15 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ - +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Xml/xmlservice/models/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Xml/xmlservice/models/_patch.py index 49900f6ab12..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Xml/xmlservice/models/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Xml/xmlservice/models/_patch.py @@ -1,15 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ - +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Xml/xmlservice/operations/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Xml/xmlservice/operations/_patch.py index 49900f6ab12..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Xml/xmlservice/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/Xml/xmlservice/operations/_patch.py @@ -1,15 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ - +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/XmsErrorResponse/setup.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/XmsErrorResponse/setup.py index 015677976be..5b4ca51162e 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/XmsErrorResponse/setup.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/XmsErrorResponse/setup.py @@ -8,7 +8,6 @@ from setuptools import setup, find_packages - PACKAGE_NAME = "xmserrorresponseextensions" version = "0.1.0" diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/XmsErrorResponse/xmserrorresponse/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/XmsErrorResponse/xmserrorresponse/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/XmsErrorResponse/xmserrorresponse/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/XmsErrorResponse/xmserrorresponse/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/XmsErrorResponse/xmserrorresponse/aio/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/XmsErrorResponse/xmserrorresponse/aio/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/XmsErrorResponse/xmserrorresponse/aio/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/XmsErrorResponse/xmserrorresponse/aio/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/XmsErrorResponse/xmserrorresponse/aio/operations/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/XmsErrorResponse/xmserrorresponse/aio/operations/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/XmsErrorResponse/xmserrorresponse/aio/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/XmsErrorResponse/xmserrorresponse/aio/operations/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/XmsErrorResponse/xmserrorresponse/models/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/XmsErrorResponse/xmserrorresponse/models/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/XmsErrorResponse/xmserrorresponse/models/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/XmsErrorResponse/xmserrorresponse/models/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/XmsErrorResponse/xmserrorresponse/operations/_patch.py b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/XmsErrorResponse/xmserrorresponse/operations/_patch.py index f7dd3251033..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/XmsErrorResponse/xmserrorresponse/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/legacy/Expected/AcceptanceTests/XmsErrorResponse/xmserrorresponse/operations/_patch.py @@ -1,14 +1,14 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------- """Customize generated code here. Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ -from typing import List -__all__: List[str] = [] # Add all objects you want publicly available to users at this package level +__all__: list[str] = [] # Add all objects you want publicly available to users at this package level def patch_sdk(): diff --git a/packages/autorest.python/test/vanilla/version-tolerant/AcceptanceTests/asynctests/test_header.py b/packages/autorest.python/test/vanilla/version-tolerant/AcceptanceTests/asynctests/test_header.py index d53596daf05..5b232bcfa71 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/AcceptanceTests/asynctests/test_header.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/AcceptanceTests/asynctests/test_header.py @@ -182,7 +182,7 @@ async def test_duration(client, value_header): @pytest.mark.asyncio async def test_byte(client, value_header): - u_bytes = bytearray("\u554A\u9F44\u4E02\u72DB\u72DC\uF9F1\uF92C\uF9F1\uFA0C\uFA29", encoding="utf-8") + u_bytes = bytearray("\u554a\u9f44\u4e02\u72db\u72dc\uf9f1\uf92c\uf9f1\ufa0c\ufa29", encoding="utf-8") await client.header.param_byte(scenario="valid", value=u_bytes) response = await client.header.response_byte(scenario="valid", cls=value_header) diff --git a/packages/autorest.python/test/vanilla/version-tolerant/AcceptanceTests/asynctests/test_url.py b/packages/autorest.python/test/vanilla/version-tolerant/AcceptanceTests/asynctests/test_url.py index 4ed849bf9a1..b0668cebc55 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/AcceptanceTests/asynctests/test_url.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/AcceptanceTests/asynctests/test_url.py @@ -61,7 +61,7 @@ async def test_byte_empty_and_null(client): @pytest.mark.asyncio async def test_byte_multi_byte(client): - u_bytes = bytearray("\u554A\u9F44\u4E02\u72DB\u72DC\uF9F1\uF92C\uF9F1\uFA0C\uFA29", encoding="utf-8") + u_bytes = bytearray("\u554a\u9f44\u4e02\u72db\u72dc\uf9f1\uf92c\uf9f1\ufa0c\ufa29", encoding="utf-8") await client.paths.byte_multi_byte(u_bytes) @@ -170,7 +170,7 @@ async def test_base64_url(client): @pytest.mark.asyncio async def test_queries_byte(client): await client.queries.byte_empty() - u_bytes = bytearray("\u554A\u9F44\u4E02\u72DB\u72DC\uF9F1\uF92C\uF9F1\uFA0C\uFA29", encoding="utf-8") + u_bytes = bytearray("\u554a\u9f44\u4e02\u72db\u72dc\uf9f1\uf92c\uf9f1\ufa0c\ufa29", encoding="utf-8") await client.queries.byte_multi_byte(byte_query=u_bytes) await client.queries.byte_null() diff --git a/packages/autorest.python/test/vanilla/version-tolerant/AcceptanceTests/conftest.py b/packages/autorest.python/test/vanilla/version-tolerant/AcceptanceTests/conftest.py index 64139e91e42..fdef7f8070e 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/AcceptanceTests/conftest.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/AcceptanceTests/conftest.py @@ -36,7 +36,6 @@ import pytest - cwd = dirname(realpath(__file__)) diff --git a/packages/autorest.python/test/vanilla/version-tolerant/AcceptanceTests/test_header.py b/packages/autorest.python/test/vanilla/version-tolerant/AcceptanceTests/test_header.py index 407477d4f96..8fb99f6b87c 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/AcceptanceTests/test_header.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/AcceptanceTests/test_header.py @@ -168,7 +168,7 @@ def test_duration(client, value_header): def test_byte(client, value_header): - u_bytes = bytearray("\u554A\u9F44\u4E02\u72DB\u72DC\uF9F1\uF92C\uF9F1\uFA0C\uFA29", encoding="utf-8") + u_bytes = bytearray("\u554a\u9f44\u4e02\u72db\u72dc\uf9f1\uf92c\uf9f1\ufa0c\ufa29", encoding="utf-8") client.header.param_byte(scenario="valid", value=u_bytes) response = client.header.response_byte(scenario="valid", cls=value_header) diff --git a/packages/autorest.python/test/vanilla/version-tolerant/AcceptanceTests/test_url.py b/packages/autorest.python/test/vanilla/version-tolerant/AcceptanceTests/test_url.py index 6e6652faf5f..ab4aab0f1cd 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/AcceptanceTests/test_url.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/AcceptanceTests/test_url.py @@ -56,7 +56,7 @@ def test_byte_empty_and_null(client): def test_byte_multi_byte(client): - u_bytes = bytearray("\u554A\u9F44\u4E02\u72DB\u72DC\uF9F1\uF92C\uF9F1\uFA0C\uFA29", encoding="utf-8") + u_bytes = bytearray("\u554a\u9f44\u4e02\u72db\u72dc\uf9f1\uf92c\uf9f1\ufa0c\ufa29", encoding="utf-8") client.paths.byte_multi_byte(u_bytes) @@ -146,7 +146,7 @@ def test_base64_url(client): def test_queries_byte(client): client.queries.byte_empty() - u_bytes = bytearray("\u554A\u9F44\u4E02\u72DB\u72DC\uF9F1\uF92C\uF9F1\uFA0C\uFA29", encoding="utf-8") + u_bytes = bytearray("\u554a\u9f44\u4e02\u72db\u72dc\uf9f1\uf92c\uf9f1\ufa0c\ufa29", encoding="utf-8") client.queries.byte_multi_byte(byte_query=u_bytes) client.queries.byte_null() diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/AdditionalPropertiesVersionTolerant/additionalpropertiesversiontolerant/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/AdditionalPropertiesVersionTolerant/additionalpropertiesversiontolerant/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/AdditionalPropertiesVersionTolerant/additionalpropertiesversiontolerant/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/AdditionalPropertiesVersionTolerant/additionalpropertiesversiontolerant/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/AdditionalPropertiesVersionTolerant/additionalpropertiesversiontolerant/aio/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/AdditionalPropertiesVersionTolerant/additionalpropertiesversiontolerant/aio/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/AdditionalPropertiesVersionTolerant/additionalpropertiesversiontolerant/aio/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/AdditionalPropertiesVersionTolerant/additionalpropertiesversiontolerant/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/AdditionalPropertiesVersionTolerant/additionalpropertiesversiontolerant/aio/operations/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/AdditionalPropertiesVersionTolerant/additionalpropertiesversiontolerant/aio/operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/AdditionalPropertiesVersionTolerant/additionalpropertiesversiontolerant/aio/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/AdditionalPropertiesVersionTolerant/additionalpropertiesversiontolerant/aio/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/AdditionalPropertiesVersionTolerant/additionalpropertiesversiontolerant/operations/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/AdditionalPropertiesVersionTolerant/additionalpropertiesversiontolerant/operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/AdditionalPropertiesVersionTolerant/additionalpropertiesversiontolerant/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/AdditionalPropertiesVersionTolerant/additionalpropertiesversiontolerant/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/AdditionalPropertiesVersionTolerant/setup.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/AdditionalPropertiesVersionTolerant/setup.py index 708d6ea09f9..c3248500f0e 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/AdditionalPropertiesVersionTolerant/setup.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/AdditionalPropertiesVersionTolerant/setup.py @@ -8,7 +8,6 @@ from setuptools import setup, find_packages - PACKAGE_NAME = "additionalpropertiesclient" version = "0.1.0" diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/AnythingVersionTolerant/anythingversiontolerant/_operations/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/AnythingVersionTolerant/anythingversiontolerant/_operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/AnythingVersionTolerant/anythingversiontolerant/_operations/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/AnythingVersionTolerant/anythingversiontolerant/_operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/AnythingVersionTolerant/anythingversiontolerant/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/AnythingVersionTolerant/anythingversiontolerant/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/AnythingVersionTolerant/anythingversiontolerant/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/AnythingVersionTolerant/anythingversiontolerant/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/AnythingVersionTolerant/anythingversiontolerant/aio/_operations/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/AnythingVersionTolerant/anythingversiontolerant/aio/_operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/AnythingVersionTolerant/anythingversiontolerant/aio/_operations/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/AnythingVersionTolerant/anythingversiontolerant/aio/_operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/AnythingVersionTolerant/anythingversiontolerant/aio/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/AnythingVersionTolerant/anythingversiontolerant/aio/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/AnythingVersionTolerant/anythingversiontolerant/aio/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/AnythingVersionTolerant/anythingversiontolerant/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/AnythingVersionTolerant/setup.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/AnythingVersionTolerant/setup.py index 720471e11a2..45f92248a50 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/AnythingVersionTolerant/setup.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/AnythingVersionTolerant/setup.py @@ -9,7 +9,6 @@ from setuptools import setup, find_packages - PACKAGE_NAME = "anythingclient" version = "0.1.0" diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyArrayVersionTolerant/bodyarrayversiontolerant/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyArrayVersionTolerant/bodyarrayversiontolerant/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyArrayVersionTolerant/bodyarrayversiontolerant/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyArrayVersionTolerant/bodyarrayversiontolerant/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyArrayVersionTolerant/bodyarrayversiontolerant/aio/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyArrayVersionTolerant/bodyarrayversiontolerant/aio/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyArrayVersionTolerant/bodyarrayversiontolerant/aio/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyArrayVersionTolerant/bodyarrayversiontolerant/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyArrayVersionTolerant/bodyarrayversiontolerant/aio/operations/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyArrayVersionTolerant/bodyarrayversiontolerant/aio/operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyArrayVersionTolerant/bodyarrayversiontolerant/aio/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyArrayVersionTolerant/bodyarrayversiontolerant/aio/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyArrayVersionTolerant/bodyarrayversiontolerant/operations/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyArrayVersionTolerant/bodyarrayversiontolerant/operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyArrayVersionTolerant/bodyarrayversiontolerant/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyArrayVersionTolerant/bodyarrayversiontolerant/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyArrayVersionTolerant/setup.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyArrayVersionTolerant/setup.py index 5c93b4bc4c8..a4646706d29 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyArrayVersionTolerant/setup.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyArrayVersionTolerant/setup.py @@ -8,7 +8,6 @@ from setuptools import setup, find_packages - PACKAGE_NAME = "autorestswaggerbatarrayservice" version = "0.1.0" diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyBinaryVersionTolerant/bodybinaryversiontolerant/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyBinaryVersionTolerant/bodybinaryversiontolerant/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyBinaryVersionTolerant/bodybinaryversiontolerant/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyBinaryVersionTolerant/bodybinaryversiontolerant/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyBinaryVersionTolerant/bodybinaryversiontolerant/aio/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyBinaryVersionTolerant/bodybinaryversiontolerant/aio/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyBinaryVersionTolerant/bodybinaryversiontolerant/aio/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyBinaryVersionTolerant/bodybinaryversiontolerant/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyBinaryVersionTolerant/bodybinaryversiontolerant/aio/operations/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyBinaryVersionTolerant/bodybinaryversiontolerant/aio/operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyBinaryVersionTolerant/bodybinaryversiontolerant/aio/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyBinaryVersionTolerant/bodybinaryversiontolerant/aio/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyBinaryVersionTolerant/bodybinaryversiontolerant/operations/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyBinaryVersionTolerant/bodybinaryversiontolerant/operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyBinaryVersionTolerant/bodybinaryversiontolerant/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyBinaryVersionTolerant/bodybinaryversiontolerant/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyBinaryVersionTolerant/setup.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyBinaryVersionTolerant/setup.py index da6cfdbb373..23083519cf4 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyBinaryVersionTolerant/setup.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyBinaryVersionTolerant/setup.py @@ -8,7 +8,6 @@ from setuptools import setup, find_packages - PACKAGE_NAME = "binarywithcontenttypeapplicationjson" version = "0.1.0" diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyBooleanVersionTolerant/bodybooleanversiontolerant/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyBooleanVersionTolerant/bodybooleanversiontolerant/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyBooleanVersionTolerant/bodybooleanversiontolerant/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyBooleanVersionTolerant/bodybooleanversiontolerant/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyBooleanVersionTolerant/bodybooleanversiontolerant/aio/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyBooleanVersionTolerant/bodybooleanversiontolerant/aio/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyBooleanVersionTolerant/bodybooleanversiontolerant/aio/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyBooleanVersionTolerant/bodybooleanversiontolerant/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyBooleanVersionTolerant/bodybooleanversiontolerant/aio/operations/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyBooleanVersionTolerant/bodybooleanversiontolerant/aio/operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyBooleanVersionTolerant/bodybooleanversiontolerant/aio/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyBooleanVersionTolerant/bodybooleanversiontolerant/aio/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyBooleanVersionTolerant/bodybooleanversiontolerant/operations/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyBooleanVersionTolerant/bodybooleanversiontolerant/operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyBooleanVersionTolerant/bodybooleanversiontolerant/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyBooleanVersionTolerant/bodybooleanversiontolerant/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyBooleanVersionTolerant/setup.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyBooleanVersionTolerant/setup.py index 20a8d56b187..327af1e1953 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyBooleanVersionTolerant/setup.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyBooleanVersionTolerant/setup.py @@ -8,7 +8,6 @@ from setuptools import setup, find_packages - PACKAGE_NAME = "autorestbooltestservice" version = "0.1.0" diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyByteVersionTolerant/bodybyteversiontolerant/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyByteVersionTolerant/bodybyteversiontolerant/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyByteVersionTolerant/bodybyteversiontolerant/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyByteVersionTolerant/bodybyteversiontolerant/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyByteVersionTolerant/bodybyteversiontolerant/aio/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyByteVersionTolerant/bodybyteversiontolerant/aio/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyByteVersionTolerant/bodybyteversiontolerant/aio/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyByteVersionTolerant/bodybyteversiontolerant/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyByteVersionTolerant/bodybyteversiontolerant/aio/operations/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyByteVersionTolerant/bodybyteversiontolerant/aio/operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyByteVersionTolerant/bodybyteversiontolerant/aio/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyByteVersionTolerant/bodybyteversiontolerant/aio/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyByteVersionTolerant/bodybyteversiontolerant/operations/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyByteVersionTolerant/bodybyteversiontolerant/operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyByteVersionTolerant/bodybyteversiontolerant/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyByteVersionTolerant/bodybyteversiontolerant/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyByteVersionTolerant/setup.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyByteVersionTolerant/setup.py index 2786adf6a4c..26e40f3179a 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyByteVersionTolerant/setup.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyByteVersionTolerant/setup.py @@ -8,7 +8,6 @@ from setuptools import setup, find_packages - PACKAGE_NAME = "autorestswaggerbatbyteservice" version = "0.1.0" diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyComplexVersionTolerant/bodycomplexversiontolerant/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyComplexVersionTolerant/bodycomplexversiontolerant/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyComplexVersionTolerant/bodycomplexversiontolerant/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyComplexVersionTolerant/bodycomplexversiontolerant/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyComplexVersionTolerant/bodycomplexversiontolerant/aio/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyComplexVersionTolerant/bodycomplexversiontolerant/aio/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyComplexVersionTolerant/bodycomplexversiontolerant/aio/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyComplexVersionTolerant/bodycomplexversiontolerant/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyComplexVersionTolerant/bodycomplexversiontolerant/aio/operations/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyComplexVersionTolerant/bodycomplexversiontolerant/aio/operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyComplexVersionTolerant/bodycomplexversiontolerant/aio/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyComplexVersionTolerant/bodycomplexversiontolerant/aio/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyComplexVersionTolerant/bodycomplexversiontolerant/operations/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyComplexVersionTolerant/bodycomplexversiontolerant/operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyComplexVersionTolerant/bodycomplexversiontolerant/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyComplexVersionTolerant/bodycomplexversiontolerant/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyComplexVersionTolerant/setup.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyComplexVersionTolerant/setup.py index 6c682525433..0bd95369e9d 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyComplexVersionTolerant/setup.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyComplexVersionTolerant/setup.py @@ -8,7 +8,6 @@ from setuptools import setup, find_packages - PACKAGE_NAME = "autorestcomplextestservice" version = "0.1.0" diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyDateTimeRfc1123VersionTolerant/bodydatetimerfc1123versiontolerant/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyDateTimeRfc1123VersionTolerant/bodydatetimerfc1123versiontolerant/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyDateTimeRfc1123VersionTolerant/bodydatetimerfc1123versiontolerant/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyDateTimeRfc1123VersionTolerant/bodydatetimerfc1123versiontolerant/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyDateTimeRfc1123VersionTolerant/bodydatetimerfc1123versiontolerant/aio/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyDateTimeRfc1123VersionTolerant/bodydatetimerfc1123versiontolerant/aio/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyDateTimeRfc1123VersionTolerant/bodydatetimerfc1123versiontolerant/aio/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyDateTimeRfc1123VersionTolerant/bodydatetimerfc1123versiontolerant/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyDateTimeRfc1123VersionTolerant/bodydatetimerfc1123versiontolerant/aio/operations/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyDateTimeRfc1123VersionTolerant/bodydatetimerfc1123versiontolerant/aio/operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyDateTimeRfc1123VersionTolerant/bodydatetimerfc1123versiontolerant/aio/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyDateTimeRfc1123VersionTolerant/bodydatetimerfc1123versiontolerant/aio/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyDateTimeRfc1123VersionTolerant/bodydatetimerfc1123versiontolerant/operations/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyDateTimeRfc1123VersionTolerant/bodydatetimerfc1123versiontolerant/operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyDateTimeRfc1123VersionTolerant/bodydatetimerfc1123versiontolerant/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyDateTimeRfc1123VersionTolerant/bodydatetimerfc1123versiontolerant/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyDateTimeRfc1123VersionTolerant/setup.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyDateTimeRfc1123VersionTolerant/setup.py index 7fa61b2e032..a3a8a2515ce 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyDateTimeRfc1123VersionTolerant/setup.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyDateTimeRfc1123VersionTolerant/setup.py @@ -8,7 +8,6 @@ from setuptools import setup, find_packages - PACKAGE_NAME = "autorestrfc1123datetimetestservice" version = "0.1.0" diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyDateTimeVersionTolerant/bodydatetimeversiontolerant/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyDateTimeVersionTolerant/bodydatetimeversiontolerant/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyDateTimeVersionTolerant/bodydatetimeversiontolerant/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyDateTimeVersionTolerant/bodydatetimeversiontolerant/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyDateTimeVersionTolerant/bodydatetimeversiontolerant/aio/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyDateTimeVersionTolerant/bodydatetimeversiontolerant/aio/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyDateTimeVersionTolerant/bodydatetimeversiontolerant/aio/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyDateTimeVersionTolerant/bodydatetimeversiontolerant/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyDateTimeVersionTolerant/bodydatetimeversiontolerant/aio/operations/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyDateTimeVersionTolerant/bodydatetimeversiontolerant/aio/operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyDateTimeVersionTolerant/bodydatetimeversiontolerant/aio/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyDateTimeVersionTolerant/bodydatetimeversiontolerant/aio/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyDateTimeVersionTolerant/bodydatetimeversiontolerant/operations/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyDateTimeVersionTolerant/bodydatetimeversiontolerant/operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyDateTimeVersionTolerant/bodydatetimeversiontolerant/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyDateTimeVersionTolerant/bodydatetimeversiontolerant/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyDateTimeVersionTolerant/setup.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyDateTimeVersionTolerant/setup.py index 8fcb3ee4d77..19f0fea4d0a 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyDateTimeVersionTolerant/setup.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyDateTimeVersionTolerant/setup.py @@ -8,7 +8,6 @@ from setuptools import setup, find_packages - PACKAGE_NAME = "autorestdatetimetestservice" version = "0.1.0" diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyDateVersionTolerant/bodydateversiontolerant/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyDateVersionTolerant/bodydateversiontolerant/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyDateVersionTolerant/bodydateversiontolerant/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyDateVersionTolerant/bodydateversiontolerant/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyDateVersionTolerant/bodydateversiontolerant/aio/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyDateVersionTolerant/bodydateversiontolerant/aio/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyDateVersionTolerant/bodydateversiontolerant/aio/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyDateVersionTolerant/bodydateversiontolerant/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyDateVersionTolerant/bodydateversiontolerant/aio/operations/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyDateVersionTolerant/bodydateversiontolerant/aio/operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyDateVersionTolerant/bodydateversiontolerant/aio/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyDateVersionTolerant/bodydateversiontolerant/aio/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyDateVersionTolerant/bodydateversiontolerant/operations/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyDateVersionTolerant/bodydateversiontolerant/operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyDateVersionTolerant/bodydateversiontolerant/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyDateVersionTolerant/bodydateversiontolerant/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyDateVersionTolerant/setup.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyDateVersionTolerant/setup.py index d9ba100c0cb..54f70b106bc 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyDateVersionTolerant/setup.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyDateVersionTolerant/setup.py @@ -8,7 +8,6 @@ from setuptools import setup, find_packages - PACKAGE_NAME = "autorestdatetestservice" version = "0.1.0" diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyDictionaryVersionTolerant/bodydictionaryversiontolerant/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyDictionaryVersionTolerant/bodydictionaryversiontolerant/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyDictionaryVersionTolerant/bodydictionaryversiontolerant/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyDictionaryVersionTolerant/bodydictionaryversiontolerant/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyDictionaryVersionTolerant/bodydictionaryversiontolerant/aio/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyDictionaryVersionTolerant/bodydictionaryversiontolerant/aio/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyDictionaryVersionTolerant/bodydictionaryversiontolerant/aio/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyDictionaryVersionTolerant/bodydictionaryversiontolerant/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyDictionaryVersionTolerant/bodydictionaryversiontolerant/aio/operations/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyDictionaryVersionTolerant/bodydictionaryversiontolerant/aio/operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyDictionaryVersionTolerant/bodydictionaryversiontolerant/aio/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyDictionaryVersionTolerant/bodydictionaryversiontolerant/aio/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyDictionaryVersionTolerant/bodydictionaryversiontolerant/operations/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyDictionaryVersionTolerant/bodydictionaryversiontolerant/operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyDictionaryVersionTolerant/bodydictionaryversiontolerant/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyDictionaryVersionTolerant/bodydictionaryversiontolerant/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyDictionaryVersionTolerant/setup.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyDictionaryVersionTolerant/setup.py index 91345eef98a..5cea2d2dc8a 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyDictionaryVersionTolerant/setup.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyDictionaryVersionTolerant/setup.py @@ -8,7 +8,6 @@ from setuptools import setup, find_packages - PACKAGE_NAME = "autorestswaggerbatdictionaryservice" version = "0.1.0" diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyDurationVersionTolerant/bodydurationversiontolerant/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyDurationVersionTolerant/bodydurationversiontolerant/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyDurationVersionTolerant/bodydurationversiontolerant/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyDurationVersionTolerant/bodydurationversiontolerant/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyDurationVersionTolerant/bodydurationversiontolerant/aio/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyDurationVersionTolerant/bodydurationversiontolerant/aio/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyDurationVersionTolerant/bodydurationversiontolerant/aio/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyDurationVersionTolerant/bodydurationversiontolerant/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyDurationVersionTolerant/bodydurationversiontolerant/aio/operations/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyDurationVersionTolerant/bodydurationversiontolerant/aio/operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyDurationVersionTolerant/bodydurationversiontolerant/aio/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyDurationVersionTolerant/bodydurationversiontolerant/aio/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyDurationVersionTolerant/bodydurationversiontolerant/operations/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyDurationVersionTolerant/bodydurationversiontolerant/operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyDurationVersionTolerant/bodydurationversiontolerant/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyDurationVersionTolerant/bodydurationversiontolerant/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyDurationVersionTolerant/setup.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyDurationVersionTolerant/setup.py index 3902fbc6006..f721aeacf69 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyDurationVersionTolerant/setup.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyDurationVersionTolerant/setup.py @@ -8,7 +8,6 @@ from setuptools import setup, find_packages - PACKAGE_NAME = "autorestdurationtestservice" version = "0.1.0" diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyFileVersionTolerant/bodyfileversiontolerant/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyFileVersionTolerant/bodyfileversiontolerant/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyFileVersionTolerant/bodyfileversiontolerant/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyFileVersionTolerant/bodyfileversiontolerant/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyFileVersionTolerant/bodyfileversiontolerant/aio/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyFileVersionTolerant/bodyfileversiontolerant/aio/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyFileVersionTolerant/bodyfileversiontolerant/aio/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyFileVersionTolerant/bodyfileversiontolerant/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyFileVersionTolerant/bodyfileversiontolerant/aio/operations/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyFileVersionTolerant/bodyfileversiontolerant/aio/operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyFileVersionTolerant/bodyfileversiontolerant/aio/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyFileVersionTolerant/bodyfileversiontolerant/aio/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyFileVersionTolerant/bodyfileversiontolerant/operations/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyFileVersionTolerant/bodyfileversiontolerant/operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyFileVersionTolerant/bodyfileversiontolerant/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyFileVersionTolerant/bodyfileversiontolerant/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyFileVersionTolerant/setup.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyFileVersionTolerant/setup.py index 58522e0d67b..26d67cef4f7 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyFileVersionTolerant/setup.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyFileVersionTolerant/setup.py @@ -8,7 +8,6 @@ from setuptools import setup, find_packages - PACKAGE_NAME = "autorestswaggerbatfileservice" version = "0.1.0" diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyFormDataVersionTolerant/bodyformdataversiontolerant/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyFormDataVersionTolerant/bodyformdataversiontolerant/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyFormDataVersionTolerant/bodyformdataversiontolerant/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyFormDataVersionTolerant/bodyformdataversiontolerant/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyFormDataVersionTolerant/bodyformdataversiontolerant/aio/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyFormDataVersionTolerant/bodyformdataversiontolerant/aio/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyFormDataVersionTolerant/bodyformdataversiontolerant/aio/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyFormDataVersionTolerant/bodyformdataversiontolerant/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyFormDataVersionTolerant/bodyformdataversiontolerant/aio/operations/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyFormDataVersionTolerant/bodyformdataversiontolerant/aio/operations/_patch.py index a798b79c113..5114b984902 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyFormDataVersionTolerant/bodyformdataversiontolerant/aio/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyFormDataVersionTolerant/bodyformdataversiontolerant/aio/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import Any, AsyncIterator, Dict, List from azure.core.tracing.decorator_async import distributed_trace_async diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyFormDataVersionTolerant/bodyformdataversiontolerant/operations/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyFormDataVersionTolerant/bodyformdataversiontolerant/operations/_patch.py index 38f241075b2..a7a8f9035e0 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyFormDataVersionTolerant/bodyformdataversiontolerant/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyFormDataVersionTolerant/bodyformdataversiontolerant/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import Any, Dict, List, Iterator, cast, Union from azure.core.tracing.decorator import distributed_trace diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyFormDataVersionTolerant/setup.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyFormDataVersionTolerant/setup.py index e528774182b..b0a12262b02 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyFormDataVersionTolerant/setup.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyFormDataVersionTolerant/setup.py @@ -8,7 +8,6 @@ from setuptools import setup, find_packages - PACKAGE_NAME = "autorestswaggerbatformdataservice" version = "0.1.0" diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyFormUrlEncodedDataVersionTolerant/bodyformurlencodeddataversiontolerant/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyFormUrlEncodedDataVersionTolerant/bodyformurlencodeddataversiontolerant/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyFormUrlEncodedDataVersionTolerant/bodyformurlencodeddataversiontolerant/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyFormUrlEncodedDataVersionTolerant/bodyformurlencodeddataversiontolerant/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyFormUrlEncodedDataVersionTolerant/bodyformurlencodeddataversiontolerant/aio/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyFormUrlEncodedDataVersionTolerant/bodyformurlencodeddataversiontolerant/aio/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyFormUrlEncodedDataVersionTolerant/bodyformurlencodeddataversiontolerant/aio/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyFormUrlEncodedDataVersionTolerant/bodyformurlencodeddataversiontolerant/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyFormUrlEncodedDataVersionTolerant/bodyformurlencodeddataversiontolerant/aio/operations/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyFormUrlEncodedDataVersionTolerant/bodyformurlencodeddataversiontolerant/aio/operations/_patch.py index b3c2e6c388e..84c86b1f376 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyFormUrlEncodedDataVersionTolerant/bodyformurlencodeddataversiontolerant/aio/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyFormUrlEncodedDataVersionTolerant/bodyformurlencodeddataversiontolerant/aio/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import Any, Dict, List from azure.core.tracing.decorator_async import distributed_trace_async diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyFormUrlEncodedDataVersionTolerant/bodyformurlencodeddataversiontolerant/operations/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyFormUrlEncodedDataVersionTolerant/bodyformurlencodeddataversiontolerant/operations/_patch.py index 9fabf920f07..8c8edd63379 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyFormUrlEncodedDataVersionTolerant/bodyformurlencodeddataversiontolerant/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyFormUrlEncodedDataVersionTolerant/bodyformurlencodeddataversiontolerant/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import Any, Dict, List, cast from azure.core.exceptions import ( diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyFormUrlEncodedDataVersionTolerant/setup.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyFormUrlEncodedDataVersionTolerant/setup.py index fe5b2d5b03a..6ac8049d972 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyFormUrlEncodedDataVersionTolerant/setup.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyFormUrlEncodedDataVersionTolerant/setup.py @@ -8,7 +8,6 @@ from setuptools import setup, find_packages - PACKAGE_NAME = "bodyformsdataurlencoded" version = "0.1.0" diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyIntegerVersionTolerant/bodyintegerversiontolerant/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyIntegerVersionTolerant/bodyintegerversiontolerant/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyIntegerVersionTolerant/bodyintegerversiontolerant/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyIntegerVersionTolerant/bodyintegerversiontolerant/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyIntegerVersionTolerant/bodyintegerversiontolerant/aio/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyIntegerVersionTolerant/bodyintegerversiontolerant/aio/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyIntegerVersionTolerant/bodyintegerversiontolerant/aio/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyIntegerVersionTolerant/bodyintegerversiontolerant/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyIntegerVersionTolerant/bodyintegerversiontolerant/aio/operations/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyIntegerVersionTolerant/bodyintegerversiontolerant/aio/operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyIntegerVersionTolerant/bodyintegerversiontolerant/aio/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyIntegerVersionTolerant/bodyintegerversiontolerant/aio/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyIntegerVersionTolerant/bodyintegerversiontolerant/operations/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyIntegerVersionTolerant/bodyintegerversiontolerant/operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyIntegerVersionTolerant/bodyintegerversiontolerant/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyIntegerVersionTolerant/bodyintegerversiontolerant/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyIntegerVersionTolerant/setup.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyIntegerVersionTolerant/setup.py index a76d16b262a..30a1f48d723 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyIntegerVersionTolerant/setup.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyIntegerVersionTolerant/setup.py @@ -8,7 +8,6 @@ from setuptools import setup, find_packages - PACKAGE_NAME = "autorestintegertestservice" version = "0.1.0" diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyNumberVersionTolerant/bodynumberversiontolerant/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyNumberVersionTolerant/bodynumberversiontolerant/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyNumberVersionTolerant/bodynumberversiontolerant/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyNumberVersionTolerant/bodynumberversiontolerant/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyNumberVersionTolerant/bodynumberversiontolerant/aio/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyNumberVersionTolerant/bodynumberversiontolerant/aio/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyNumberVersionTolerant/bodynumberversiontolerant/aio/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyNumberVersionTolerant/bodynumberversiontolerant/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyNumberVersionTolerant/bodynumberversiontolerant/aio/operations/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyNumberVersionTolerant/bodynumberversiontolerant/aio/operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyNumberVersionTolerant/bodynumberversiontolerant/aio/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyNumberVersionTolerant/bodynumberversiontolerant/aio/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyNumberVersionTolerant/bodynumberversiontolerant/operations/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyNumberVersionTolerant/bodynumberversiontolerant/operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyNumberVersionTolerant/bodynumberversiontolerant/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyNumberVersionTolerant/bodynumberversiontolerant/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyNumberVersionTolerant/setup.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyNumberVersionTolerant/setup.py index 3e1f1ec6331..a60980ca8b1 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyNumberVersionTolerant/setup.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyNumberVersionTolerant/setup.py @@ -8,7 +8,6 @@ from setuptools import setup, find_packages - PACKAGE_NAME = "autorestnumbertestservice" version = "0.1.0" diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyStringVersionTolerant/bodystringversiontolerant/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyStringVersionTolerant/bodystringversiontolerant/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyStringVersionTolerant/bodystringversiontolerant/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyStringVersionTolerant/bodystringversiontolerant/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyStringVersionTolerant/bodystringversiontolerant/aio/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyStringVersionTolerant/bodystringversiontolerant/aio/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyStringVersionTolerant/bodystringversiontolerant/aio/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyStringVersionTolerant/bodystringversiontolerant/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyStringVersionTolerant/bodystringversiontolerant/aio/operations/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyStringVersionTolerant/bodystringversiontolerant/aio/operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyStringVersionTolerant/bodystringversiontolerant/aio/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyStringVersionTolerant/bodystringversiontolerant/aio/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyStringVersionTolerant/bodystringversiontolerant/operations/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyStringVersionTolerant/bodystringversiontolerant/operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyStringVersionTolerant/bodystringversiontolerant/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyStringVersionTolerant/bodystringversiontolerant/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyStringVersionTolerant/setup.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyStringVersionTolerant/setup.py index 20d8244540e..d655a7e2917 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyStringVersionTolerant/setup.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyStringVersionTolerant/setup.py @@ -8,7 +8,6 @@ from setuptools import setup, find_packages - PACKAGE_NAME = "autorestswaggerbatservice" version = "0.1.0" diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyTimeVersionTolerant/bodytimeversiontolerant/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyTimeVersionTolerant/bodytimeversiontolerant/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyTimeVersionTolerant/bodytimeversiontolerant/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyTimeVersionTolerant/bodytimeversiontolerant/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyTimeVersionTolerant/bodytimeversiontolerant/aio/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyTimeVersionTolerant/bodytimeversiontolerant/aio/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyTimeVersionTolerant/bodytimeversiontolerant/aio/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyTimeVersionTolerant/bodytimeversiontolerant/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyTimeVersionTolerant/bodytimeversiontolerant/aio/operations/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyTimeVersionTolerant/bodytimeversiontolerant/aio/operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyTimeVersionTolerant/bodytimeversiontolerant/aio/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyTimeVersionTolerant/bodytimeversiontolerant/aio/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyTimeVersionTolerant/bodytimeversiontolerant/operations/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyTimeVersionTolerant/bodytimeversiontolerant/operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyTimeVersionTolerant/bodytimeversiontolerant/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyTimeVersionTolerant/bodytimeversiontolerant/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyTimeVersionTolerant/setup.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyTimeVersionTolerant/setup.py index 2773de29cf2..bb8c19db37f 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyTimeVersionTolerant/setup.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/BodyTimeVersionTolerant/setup.py @@ -8,7 +8,6 @@ from setuptools import setup, find_packages - PACKAGE_NAME = "autoresttimetestservice" version = "0.1.0" diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ClientEnumVersionTolerant/clientenumversiontolerant/_operations/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ClientEnumVersionTolerant/clientenumversiontolerant/_operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ClientEnumVersionTolerant/clientenumversiontolerant/_operations/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ClientEnumVersionTolerant/clientenumversiontolerant/_operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ClientEnumVersionTolerant/clientenumversiontolerant/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ClientEnumVersionTolerant/clientenumversiontolerant/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ClientEnumVersionTolerant/clientenumversiontolerant/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ClientEnumVersionTolerant/clientenumversiontolerant/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ClientEnumVersionTolerant/clientenumversiontolerant/aio/_operations/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ClientEnumVersionTolerant/clientenumversiontolerant/aio/_operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ClientEnumVersionTolerant/clientenumversiontolerant/aio/_operations/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ClientEnumVersionTolerant/clientenumversiontolerant/aio/_operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ClientEnumVersionTolerant/clientenumversiontolerant/aio/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ClientEnumVersionTolerant/clientenumversiontolerant/aio/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ClientEnumVersionTolerant/clientenumversiontolerant/aio/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ClientEnumVersionTolerant/clientenumversiontolerant/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ClientEnumVersionTolerant/clientenumversiontolerant/models/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ClientEnumVersionTolerant/clientenumversiontolerant/models/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ClientEnumVersionTolerant/clientenumversiontolerant/models/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ClientEnumVersionTolerant/clientenumversiontolerant/models/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ClientEnumVersionTolerant/setup.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ClientEnumVersionTolerant/setup.py index 62507af3e27..0abf28e31ab 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ClientEnumVersionTolerant/setup.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ClientEnumVersionTolerant/setup.py @@ -8,7 +8,6 @@ from setuptools import setup, find_packages - PACKAGE_NAME = "clientwithenum" version = "0.1.0" diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ConstantsVersionTolerant/constantsversiontolerant/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ConstantsVersionTolerant/constantsversiontolerant/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ConstantsVersionTolerant/constantsversiontolerant/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ConstantsVersionTolerant/constantsversiontolerant/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ConstantsVersionTolerant/constantsversiontolerant/aio/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ConstantsVersionTolerant/constantsversiontolerant/aio/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ConstantsVersionTolerant/constantsversiontolerant/aio/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ConstantsVersionTolerant/constantsversiontolerant/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ConstantsVersionTolerant/constantsversiontolerant/aio/operations/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ConstantsVersionTolerant/constantsversiontolerant/aio/operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ConstantsVersionTolerant/constantsversiontolerant/aio/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ConstantsVersionTolerant/constantsversiontolerant/aio/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ConstantsVersionTolerant/constantsversiontolerant/operations/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ConstantsVersionTolerant/constantsversiontolerant/operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ConstantsVersionTolerant/constantsversiontolerant/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ConstantsVersionTolerant/constantsversiontolerant/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ConstantsVersionTolerant/setup.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ConstantsVersionTolerant/setup.py index 48fe9cf1240..37fc4bc01e4 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ConstantsVersionTolerant/setup.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ConstantsVersionTolerant/setup.py @@ -8,7 +8,6 @@ from setuptools import setup, find_packages - PACKAGE_NAME = "autorestswaggerconstantservice" version = "0.1.0" diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/CustomBaseUriMoreOptionsVersionTolerant/custombaseurlmoreoptionsversiontolerant/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/CustomBaseUriMoreOptionsVersionTolerant/custombaseurlmoreoptionsversiontolerant/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/CustomBaseUriMoreOptionsVersionTolerant/custombaseurlmoreoptionsversiontolerant/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/CustomBaseUriMoreOptionsVersionTolerant/custombaseurlmoreoptionsversiontolerant/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/CustomBaseUriMoreOptionsVersionTolerant/custombaseurlmoreoptionsversiontolerant/aio/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/CustomBaseUriMoreOptionsVersionTolerant/custombaseurlmoreoptionsversiontolerant/aio/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/CustomBaseUriMoreOptionsVersionTolerant/custombaseurlmoreoptionsversiontolerant/aio/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/CustomBaseUriMoreOptionsVersionTolerant/custombaseurlmoreoptionsversiontolerant/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/CustomBaseUriMoreOptionsVersionTolerant/custombaseurlmoreoptionsversiontolerant/aio/operations/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/CustomBaseUriMoreOptionsVersionTolerant/custombaseurlmoreoptionsversiontolerant/aio/operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/CustomBaseUriMoreOptionsVersionTolerant/custombaseurlmoreoptionsversiontolerant/aio/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/CustomBaseUriMoreOptionsVersionTolerant/custombaseurlmoreoptionsversiontolerant/aio/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/CustomBaseUriMoreOptionsVersionTolerant/custombaseurlmoreoptionsversiontolerant/operations/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/CustomBaseUriMoreOptionsVersionTolerant/custombaseurlmoreoptionsversiontolerant/operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/CustomBaseUriMoreOptionsVersionTolerant/custombaseurlmoreoptionsversiontolerant/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/CustomBaseUriMoreOptionsVersionTolerant/custombaseurlmoreoptionsversiontolerant/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/CustomBaseUriMoreOptionsVersionTolerant/setup.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/CustomBaseUriMoreOptionsVersionTolerant/setup.py index aab082215cd..4f100126f94 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/CustomBaseUriMoreOptionsVersionTolerant/setup.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/CustomBaseUriMoreOptionsVersionTolerant/setup.py @@ -8,7 +8,6 @@ from setuptools import setup, find_packages - PACKAGE_NAME = "autorestparameterizedcustomhosttestclient" version = "0.1.0" diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/CustomBaseUriVersionTolerant/custombaseurlversiontolerant/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/CustomBaseUriVersionTolerant/custombaseurlversiontolerant/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/CustomBaseUriVersionTolerant/custombaseurlversiontolerant/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/CustomBaseUriVersionTolerant/custombaseurlversiontolerant/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/CustomBaseUriVersionTolerant/custombaseurlversiontolerant/aio/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/CustomBaseUriVersionTolerant/custombaseurlversiontolerant/aio/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/CustomBaseUriVersionTolerant/custombaseurlversiontolerant/aio/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/CustomBaseUriVersionTolerant/custombaseurlversiontolerant/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/CustomBaseUriVersionTolerant/custombaseurlversiontolerant/aio/operations/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/CustomBaseUriVersionTolerant/custombaseurlversiontolerant/aio/operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/CustomBaseUriVersionTolerant/custombaseurlversiontolerant/aio/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/CustomBaseUriVersionTolerant/custombaseurlversiontolerant/aio/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/CustomBaseUriVersionTolerant/custombaseurlversiontolerant/operations/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/CustomBaseUriVersionTolerant/custombaseurlversiontolerant/operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/CustomBaseUriVersionTolerant/custombaseurlversiontolerant/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/CustomBaseUriVersionTolerant/custombaseurlversiontolerant/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/CustomBaseUriVersionTolerant/setup.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/CustomBaseUriVersionTolerant/setup.py index dbe06a5c65e..69ce6d162b0 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/CustomBaseUriVersionTolerant/setup.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/CustomBaseUriVersionTolerant/setup.py @@ -8,7 +8,6 @@ from setuptools import setup, find_packages - PACKAGE_NAME = "autorestparameterizedhosttestclient" version = "0.1.0" diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ErrorWithSecretsVersionTolerant/errorwithsecretsversiontolerant/_operations/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ErrorWithSecretsVersionTolerant/errorwithsecretsversiontolerant/_operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ErrorWithSecretsVersionTolerant/errorwithsecretsversiontolerant/_operations/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ErrorWithSecretsVersionTolerant/errorwithsecretsversiontolerant/_operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ErrorWithSecretsVersionTolerant/errorwithsecretsversiontolerant/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ErrorWithSecretsVersionTolerant/errorwithsecretsversiontolerant/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ErrorWithSecretsVersionTolerant/errorwithsecretsversiontolerant/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ErrorWithSecretsVersionTolerant/errorwithsecretsversiontolerant/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ErrorWithSecretsVersionTolerant/errorwithsecretsversiontolerant/aio/_operations/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ErrorWithSecretsVersionTolerant/errorwithsecretsversiontolerant/aio/_operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ErrorWithSecretsVersionTolerant/errorwithsecretsversiontolerant/aio/_operations/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ErrorWithSecretsVersionTolerant/errorwithsecretsversiontolerant/aio/_operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ErrorWithSecretsVersionTolerant/errorwithsecretsversiontolerant/aio/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ErrorWithSecretsVersionTolerant/errorwithsecretsversiontolerant/aio/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ErrorWithSecretsVersionTolerant/errorwithsecretsversiontolerant/aio/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ErrorWithSecretsVersionTolerant/errorwithsecretsversiontolerant/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ErrorWithSecretsVersionTolerant/setup.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ErrorWithSecretsVersionTolerant/setup.py index c016a619467..7bffd139d93 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ErrorWithSecretsVersionTolerant/setup.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ErrorWithSecretsVersionTolerant/setup.py @@ -8,7 +8,6 @@ from setuptools import setup, find_packages - PACKAGE_NAME = "errorwithsecrets" version = "0.1.0" diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ExtensibleEnumsVersionTolerant/extensibleenumsswaggerversiontolerant/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ExtensibleEnumsVersionTolerant/extensibleenumsswaggerversiontolerant/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ExtensibleEnumsVersionTolerant/extensibleenumsswaggerversiontolerant/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ExtensibleEnumsVersionTolerant/extensibleenumsswaggerversiontolerant/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ExtensibleEnumsVersionTolerant/extensibleenumsswaggerversiontolerant/aio/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ExtensibleEnumsVersionTolerant/extensibleenumsswaggerversiontolerant/aio/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ExtensibleEnumsVersionTolerant/extensibleenumsswaggerversiontolerant/aio/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ExtensibleEnumsVersionTolerant/extensibleenumsswaggerversiontolerant/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ExtensibleEnumsVersionTolerant/extensibleenumsswaggerversiontolerant/aio/operations/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ExtensibleEnumsVersionTolerant/extensibleenumsswaggerversiontolerant/aio/operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ExtensibleEnumsVersionTolerant/extensibleenumsswaggerversiontolerant/aio/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ExtensibleEnumsVersionTolerant/extensibleenumsswaggerversiontolerant/aio/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ExtensibleEnumsVersionTolerant/extensibleenumsswaggerversiontolerant/operations/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ExtensibleEnumsVersionTolerant/extensibleenumsswaggerversiontolerant/operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ExtensibleEnumsVersionTolerant/extensibleenumsswaggerversiontolerant/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ExtensibleEnumsVersionTolerant/extensibleenumsswaggerversiontolerant/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ExtensibleEnumsVersionTolerant/setup.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ExtensibleEnumsVersionTolerant/setup.py index 41041f3e244..25a2b681ee3 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ExtensibleEnumsVersionTolerant/setup.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ExtensibleEnumsVersionTolerant/setup.py @@ -8,7 +8,6 @@ from setuptools import setup, find_packages - PACKAGE_NAME = "petstoreinc" version = "0.1.0" diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/HeaderVersionTolerant/headerversiontolerant/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/HeaderVersionTolerant/headerversiontolerant/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/HeaderVersionTolerant/headerversiontolerant/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/HeaderVersionTolerant/headerversiontolerant/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/HeaderVersionTolerant/headerversiontolerant/aio/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/HeaderVersionTolerant/headerversiontolerant/aio/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/HeaderVersionTolerant/headerversiontolerant/aio/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/HeaderVersionTolerant/headerversiontolerant/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/HeaderVersionTolerant/headerversiontolerant/aio/operations/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/HeaderVersionTolerant/headerversiontolerant/aio/operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/HeaderVersionTolerant/headerversiontolerant/aio/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/HeaderVersionTolerant/headerversiontolerant/aio/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/HeaderVersionTolerant/headerversiontolerant/operations/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/HeaderVersionTolerant/headerversiontolerant/operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/HeaderVersionTolerant/headerversiontolerant/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/HeaderVersionTolerant/headerversiontolerant/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/HeaderVersionTolerant/setup.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/HeaderVersionTolerant/setup.py index 7220cd67e21..1ebd98cd0be 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/HeaderVersionTolerant/setup.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/HeaderVersionTolerant/setup.py @@ -8,7 +8,6 @@ from setuptools import setup, find_packages - PACKAGE_NAME = "autorestswaggerbatheaderservice" version = "0.1.0" diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/HttpVersionTolerant/httpinfrastructureversiontolerant/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/HttpVersionTolerant/httpinfrastructureversiontolerant/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/HttpVersionTolerant/httpinfrastructureversiontolerant/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/HttpVersionTolerant/httpinfrastructureversiontolerant/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/HttpVersionTolerant/httpinfrastructureversiontolerant/aio/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/HttpVersionTolerant/httpinfrastructureversiontolerant/aio/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/HttpVersionTolerant/httpinfrastructureversiontolerant/aio/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/HttpVersionTolerant/httpinfrastructureversiontolerant/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/HttpVersionTolerant/httpinfrastructureversiontolerant/aio/operations/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/HttpVersionTolerant/httpinfrastructureversiontolerant/aio/operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/HttpVersionTolerant/httpinfrastructureversiontolerant/aio/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/HttpVersionTolerant/httpinfrastructureversiontolerant/aio/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/HttpVersionTolerant/httpinfrastructureversiontolerant/operations/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/HttpVersionTolerant/httpinfrastructureversiontolerant/operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/HttpVersionTolerant/httpinfrastructureversiontolerant/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/HttpVersionTolerant/httpinfrastructureversiontolerant/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/HttpVersionTolerant/setup.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/HttpVersionTolerant/setup.py index f80fec31ada..5d1704d787f 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/HttpVersionTolerant/setup.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/HttpVersionTolerant/setup.py @@ -8,7 +8,6 @@ from setuptools import setup, find_packages - PACKAGE_NAME = "autoresthttpinfrastructuretestservice" version = "0.1.0" diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/IncorrectErrorResponseVersionTolerant/incorrecterrorresponseversiontolerant/_operations/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/IncorrectErrorResponseVersionTolerant/incorrecterrorresponseversiontolerant/_operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/IncorrectErrorResponseVersionTolerant/incorrecterrorresponseversiontolerant/_operations/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/IncorrectErrorResponseVersionTolerant/incorrecterrorresponseversiontolerant/_operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/IncorrectErrorResponseVersionTolerant/incorrecterrorresponseversiontolerant/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/IncorrectErrorResponseVersionTolerant/incorrecterrorresponseversiontolerant/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/IncorrectErrorResponseVersionTolerant/incorrecterrorresponseversiontolerant/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/IncorrectErrorResponseVersionTolerant/incorrecterrorresponseversiontolerant/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/IncorrectErrorResponseVersionTolerant/incorrecterrorresponseversiontolerant/aio/_operations/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/IncorrectErrorResponseVersionTolerant/incorrecterrorresponseversiontolerant/aio/_operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/IncorrectErrorResponseVersionTolerant/incorrecterrorresponseversiontolerant/aio/_operations/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/IncorrectErrorResponseVersionTolerant/incorrecterrorresponseversiontolerant/aio/_operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/IncorrectErrorResponseVersionTolerant/incorrecterrorresponseversiontolerant/aio/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/IncorrectErrorResponseVersionTolerant/incorrecterrorresponseversiontolerant/aio/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/IncorrectErrorResponseVersionTolerant/incorrecterrorresponseversiontolerant/aio/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/IncorrectErrorResponseVersionTolerant/incorrecterrorresponseversiontolerant/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/IncorrectErrorResponseVersionTolerant/setup.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/IncorrectErrorResponseVersionTolerant/setup.py index 414044f4ee2..f0685714c56 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/IncorrectErrorResponseVersionTolerant/setup.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/IncorrectErrorResponseVersionTolerant/setup.py @@ -8,7 +8,6 @@ from setuptools import setup, find_packages - PACKAGE_NAME = "incorrectreturnederrormodel" version = "0.1.0" diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/MediaTypesVersionTolerant/mediatypesversiontolerant/_operations/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/MediaTypesVersionTolerant/mediatypesversiontolerant/_operations/_patch.py index 4dbaa2e54e7..25002d0fc3d 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/MediaTypesVersionTolerant/mediatypesversiontolerant/_operations/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/MediaTypesVersionTolerant/mediatypesversiontolerant/_operations/_patch.py @@ -8,6 +8,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List, Any, IO, Optional, cast, Union, Tuple, Dict from azure.core.exceptions import ( diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/MediaTypesVersionTolerant/mediatypesversiontolerant/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/MediaTypesVersionTolerant/mediatypesversiontolerant/_patch.py index 6ae03df5da8..59fe2876507 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/MediaTypesVersionTolerant/mediatypesversiontolerant/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/MediaTypesVersionTolerant/mediatypesversiontolerant/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List, Any, overload, IO, Optional, cast, Union, Tuple, Dict from azure.core.exceptions import ( diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/MediaTypesVersionTolerant/mediatypesversiontolerant/aio/_operations/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/MediaTypesVersionTolerant/mediatypesversiontolerant/aio/_operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/MediaTypesVersionTolerant/mediatypesversiontolerant/aio/_operations/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/MediaTypesVersionTolerant/mediatypesversiontolerant/aio/_operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/MediaTypesVersionTolerant/mediatypesversiontolerant/aio/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/MediaTypesVersionTolerant/mediatypesversiontolerant/aio/_patch.py index f81908ba59b..f21d2b1d4e8 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/MediaTypesVersionTolerant/mediatypesversiontolerant/aio/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/MediaTypesVersionTolerant/mediatypesversiontolerant/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List, Any, overload, IO, Optional, Union from azure.core.tracing.decorator_async import distributed_trace_async diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/MediaTypesVersionTolerant/setup.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/MediaTypesVersionTolerant/setup.py index 17f9c4b7252..0476a6dc335 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/MediaTypesVersionTolerant/setup.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/MediaTypesVersionTolerant/setup.py @@ -8,7 +8,6 @@ from setuptools import setup, find_packages - PACKAGE_NAME = "mediatypesclient" version = "0.1.0" diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/MergePatchJsonVersionTolerant/mergepatchjsonversiontolerant/_operations/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/MergePatchJsonVersionTolerant/mergepatchjsonversiontolerant/_operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/MergePatchJsonVersionTolerant/mergepatchjsonversiontolerant/_operations/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/MergePatchJsonVersionTolerant/mergepatchjsonversiontolerant/_operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/MergePatchJsonVersionTolerant/mergepatchjsonversiontolerant/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/MergePatchJsonVersionTolerant/mergepatchjsonversiontolerant/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/MergePatchJsonVersionTolerant/mergepatchjsonversiontolerant/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/MergePatchJsonVersionTolerant/mergepatchjsonversiontolerant/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/MergePatchJsonVersionTolerant/mergepatchjsonversiontolerant/aio/_operations/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/MergePatchJsonVersionTolerant/mergepatchjsonversiontolerant/aio/_operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/MergePatchJsonVersionTolerant/mergepatchjsonversiontolerant/aio/_operations/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/MergePatchJsonVersionTolerant/mergepatchjsonversiontolerant/aio/_operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/MergePatchJsonVersionTolerant/mergepatchjsonversiontolerant/aio/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/MergePatchJsonVersionTolerant/mergepatchjsonversiontolerant/aio/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/MergePatchJsonVersionTolerant/mergepatchjsonversiontolerant/aio/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/MergePatchJsonVersionTolerant/mergepatchjsonversiontolerant/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/MergePatchJsonVersionTolerant/setup.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/MergePatchJsonVersionTolerant/setup.py index 24682ccbd2f..c1d6be027eb 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/MergePatchJsonVersionTolerant/setup.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/MergePatchJsonVersionTolerant/setup.py @@ -8,7 +8,6 @@ from setuptools import setup, find_packages - PACKAGE_NAME = "mergepatchjsonclient" version = "0.1.0" diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ModelFlatteningVersionTolerant/modelflatteningversiontolerant/_operations/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ModelFlatteningVersionTolerant/modelflatteningversiontolerant/_operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ModelFlatteningVersionTolerant/modelflatteningversiontolerant/_operations/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ModelFlatteningVersionTolerant/modelflatteningversiontolerant/_operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ModelFlatteningVersionTolerant/modelflatteningversiontolerant/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ModelFlatteningVersionTolerant/modelflatteningversiontolerant/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ModelFlatteningVersionTolerant/modelflatteningversiontolerant/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ModelFlatteningVersionTolerant/modelflatteningversiontolerant/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ModelFlatteningVersionTolerant/modelflatteningversiontolerant/aio/_operations/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ModelFlatteningVersionTolerant/modelflatteningversiontolerant/aio/_operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ModelFlatteningVersionTolerant/modelflatteningversiontolerant/aio/_operations/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ModelFlatteningVersionTolerant/modelflatteningversiontolerant/aio/_operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ModelFlatteningVersionTolerant/modelflatteningversiontolerant/aio/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ModelFlatteningVersionTolerant/modelflatteningversiontolerant/aio/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ModelFlatteningVersionTolerant/modelflatteningversiontolerant/aio/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ModelFlatteningVersionTolerant/modelflatteningversiontolerant/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ModelFlatteningVersionTolerant/setup.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ModelFlatteningVersionTolerant/setup.py index 96e4ed7ae34..ecc3ce5ed4b 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ModelFlatteningVersionTolerant/setup.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ModelFlatteningVersionTolerant/setup.py @@ -8,7 +8,6 @@ from setuptools import setup, find_packages - PACKAGE_NAME = "autorestresourceflatteningtestservice" version = "0.1.0" diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/MultipleInheritanceVersionTolerant/multipleinheritanceversiontolerant/_operations/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/MultipleInheritanceVersionTolerant/multipleinheritanceversiontolerant/_operations/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/MultipleInheritanceVersionTolerant/multipleinheritanceversiontolerant/_operations/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/MultipleInheritanceVersionTolerant/multipleinheritanceversiontolerant/_operations/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/MultipleInheritanceVersionTolerant/multipleinheritanceversiontolerant/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/MultipleInheritanceVersionTolerant/multipleinheritanceversiontolerant/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/MultipleInheritanceVersionTolerant/multipleinheritanceversiontolerant/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/MultipleInheritanceVersionTolerant/multipleinheritanceversiontolerant/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/MultipleInheritanceVersionTolerant/multipleinheritanceversiontolerant/aio/_operations/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/MultipleInheritanceVersionTolerant/multipleinheritanceversiontolerant/aio/_operations/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/MultipleInheritanceVersionTolerant/multipleinheritanceversiontolerant/aio/_operations/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/MultipleInheritanceVersionTolerant/multipleinheritanceversiontolerant/aio/_operations/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/MultipleInheritanceVersionTolerant/multipleinheritanceversiontolerant/aio/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/MultipleInheritanceVersionTolerant/multipleinheritanceversiontolerant/aio/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/MultipleInheritanceVersionTolerant/multipleinheritanceversiontolerant/aio/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/MultipleInheritanceVersionTolerant/multipleinheritanceversiontolerant/aio/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/MultipleInheritanceVersionTolerant/setup.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/MultipleInheritanceVersionTolerant/setup.py index 65ce30c1474..106241853f4 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/MultipleInheritanceVersionTolerant/setup.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/MultipleInheritanceVersionTolerant/setup.py @@ -8,7 +8,6 @@ from setuptools import setup, find_packages - PACKAGE_NAME = "multipleinheritanceserviceclient" version = "0.1.0" diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/NoNamespaceFlagVersionTolerant/anything_client/_operations/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/NoNamespaceFlagVersionTolerant/anything_client/_operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/NoNamespaceFlagVersionTolerant/anything_client/_operations/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/NoNamespaceFlagVersionTolerant/anything_client/_operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/NoNamespaceFlagVersionTolerant/anything_client/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/NoNamespaceFlagVersionTolerant/anything_client/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/NoNamespaceFlagVersionTolerant/anything_client/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/NoNamespaceFlagVersionTolerant/anything_client/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/NoNamespaceFlagVersionTolerant/anything_client/aio/_operations/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/NoNamespaceFlagVersionTolerant/anything_client/aio/_operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/NoNamespaceFlagVersionTolerant/anything_client/aio/_operations/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/NoNamespaceFlagVersionTolerant/anything_client/aio/_operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/NoNamespaceFlagVersionTolerant/anything_client/aio/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/NoNamespaceFlagVersionTolerant/anything_client/aio/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/NoNamespaceFlagVersionTolerant/anything_client/aio/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/NoNamespaceFlagVersionTolerant/anything_client/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/NoNamespaceFlagVersionTolerant/setup.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/NoNamespaceFlagVersionTolerant/setup.py index 4b44e53f1b6..0fb68ebbb7f 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/NoNamespaceFlagVersionTolerant/setup.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/NoNamespaceFlagVersionTolerant/setup.py @@ -9,7 +9,6 @@ from setuptools import setup, find_packages - PACKAGE_NAME = "nonamespaceflag" version = "0.1.0" diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/NoOperationsVersionTolerant/nooperationsversiontolerant/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/NoOperationsVersionTolerant/nooperationsversiontolerant/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/NoOperationsVersionTolerant/nooperationsversiontolerant/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/NoOperationsVersionTolerant/nooperationsversiontolerant/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/NoOperationsVersionTolerant/setup.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/NoOperationsVersionTolerant/setup.py index 6bb683a96d7..649479281fb 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/NoOperationsVersionTolerant/setup.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/NoOperationsVersionTolerant/setup.py @@ -8,7 +8,6 @@ from setuptools import setup, find_packages - PACKAGE_NAME = "nooperationsserviceclient" version = "0.1.0" diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/NonStringEnumsVersionTolerant/nonstringenumsversiontolerant/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/NonStringEnumsVersionTolerant/nonstringenumsversiontolerant/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/NonStringEnumsVersionTolerant/nonstringenumsversiontolerant/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/NonStringEnumsVersionTolerant/nonstringenumsversiontolerant/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/NonStringEnumsVersionTolerant/nonstringenumsversiontolerant/aio/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/NonStringEnumsVersionTolerant/nonstringenumsversiontolerant/aio/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/NonStringEnumsVersionTolerant/nonstringenumsversiontolerant/aio/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/NonStringEnumsVersionTolerant/nonstringenumsversiontolerant/aio/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/NonStringEnumsVersionTolerant/nonstringenumsversiontolerant/aio/operations/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/NonStringEnumsVersionTolerant/nonstringenumsversiontolerant/aio/operations/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/NonStringEnumsVersionTolerant/nonstringenumsversiontolerant/aio/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/NonStringEnumsVersionTolerant/nonstringenumsversiontolerant/aio/operations/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/NonStringEnumsVersionTolerant/nonstringenumsversiontolerant/operations/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/NonStringEnumsVersionTolerant/nonstringenumsversiontolerant/operations/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/NonStringEnumsVersionTolerant/nonstringenumsversiontolerant/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/NonStringEnumsVersionTolerant/nonstringenumsversiontolerant/operations/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/NonStringEnumsVersionTolerant/setup.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/NonStringEnumsVersionTolerant/setup.py index 930e6407d7d..ac7b760933b 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/NonStringEnumsVersionTolerant/setup.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/NonStringEnumsVersionTolerant/setup.py @@ -8,7 +8,6 @@ from setuptools import setup, find_packages - PACKAGE_NAME = "nonstringenumsclient" version = "0.1.0" diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ObjectTypeVersionTolerant/objecttypeversiontolerant/_operations/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ObjectTypeVersionTolerant/objecttypeversiontolerant/_operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ObjectTypeVersionTolerant/objecttypeversiontolerant/_operations/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ObjectTypeVersionTolerant/objecttypeversiontolerant/_operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ObjectTypeVersionTolerant/objecttypeversiontolerant/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ObjectTypeVersionTolerant/objecttypeversiontolerant/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ObjectTypeVersionTolerant/objecttypeversiontolerant/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ObjectTypeVersionTolerant/objecttypeversiontolerant/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ObjectTypeVersionTolerant/objecttypeversiontolerant/aio/_operations/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ObjectTypeVersionTolerant/objecttypeversiontolerant/aio/_operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ObjectTypeVersionTolerant/objecttypeversiontolerant/aio/_operations/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ObjectTypeVersionTolerant/objecttypeversiontolerant/aio/_operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ObjectTypeVersionTolerant/objecttypeversiontolerant/aio/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ObjectTypeVersionTolerant/objecttypeversiontolerant/aio/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ObjectTypeVersionTolerant/objecttypeversiontolerant/aio/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ObjectTypeVersionTolerant/objecttypeversiontolerant/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ObjectTypeVersionTolerant/setup.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ObjectTypeVersionTolerant/setup.py index 61ca91f962f..01c7500f357 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ObjectTypeVersionTolerant/setup.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ObjectTypeVersionTolerant/setup.py @@ -8,7 +8,6 @@ from setuptools import setup, find_packages - PACKAGE_NAME = "objecttypeclient" version = "0.1.0" diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ParameterFlatteningVersionTolerant/parameterflatteningversiontolerant/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ParameterFlatteningVersionTolerant/parameterflatteningversiontolerant/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ParameterFlatteningVersionTolerant/parameterflatteningversiontolerant/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ParameterFlatteningVersionTolerant/parameterflatteningversiontolerant/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ParameterFlatteningVersionTolerant/parameterflatteningversiontolerant/aio/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ParameterFlatteningVersionTolerant/parameterflatteningversiontolerant/aio/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ParameterFlatteningVersionTolerant/parameterflatteningversiontolerant/aio/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ParameterFlatteningVersionTolerant/parameterflatteningversiontolerant/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ParameterFlatteningVersionTolerant/parameterflatteningversiontolerant/aio/operations/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ParameterFlatteningVersionTolerant/parameterflatteningversiontolerant/aio/operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ParameterFlatteningVersionTolerant/parameterflatteningversiontolerant/aio/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ParameterFlatteningVersionTolerant/parameterflatteningversiontolerant/aio/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ParameterFlatteningVersionTolerant/parameterflatteningversiontolerant/operations/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ParameterFlatteningVersionTolerant/parameterflatteningversiontolerant/operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ParameterFlatteningVersionTolerant/parameterflatteningversiontolerant/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ParameterFlatteningVersionTolerant/parameterflatteningversiontolerant/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ParameterFlatteningVersionTolerant/setup.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ParameterFlatteningVersionTolerant/setup.py index 0dbf2cb1c55..ecc852cb591 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ParameterFlatteningVersionTolerant/setup.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ParameterFlatteningVersionTolerant/setup.py @@ -8,7 +8,6 @@ from setuptools import setup, find_packages - PACKAGE_NAME = "autorestparameterflattening" version = "0.1.0" diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ParameterizedEndpointVersionTolerant/parameterizedendpointversiontolerant/_operations/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ParameterizedEndpointVersionTolerant/parameterizedendpointversiontolerant/_operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ParameterizedEndpointVersionTolerant/parameterizedendpointversiontolerant/_operations/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ParameterizedEndpointVersionTolerant/parameterizedendpointversiontolerant/_operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ParameterizedEndpointVersionTolerant/parameterizedendpointversiontolerant/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ParameterizedEndpointVersionTolerant/parameterizedendpointversiontolerant/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ParameterizedEndpointVersionTolerant/parameterizedendpointversiontolerant/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ParameterizedEndpointVersionTolerant/parameterizedendpointversiontolerant/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ParameterizedEndpointVersionTolerant/parameterizedendpointversiontolerant/aio/_operations/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ParameterizedEndpointVersionTolerant/parameterizedendpointversiontolerant/aio/_operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ParameterizedEndpointVersionTolerant/parameterizedendpointversiontolerant/aio/_operations/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ParameterizedEndpointVersionTolerant/parameterizedendpointversiontolerant/aio/_operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ParameterizedEndpointVersionTolerant/parameterizedendpointversiontolerant/aio/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ParameterizedEndpointVersionTolerant/parameterizedendpointversiontolerant/aio/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ParameterizedEndpointVersionTolerant/parameterizedendpointversiontolerant/aio/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ParameterizedEndpointVersionTolerant/parameterizedendpointversiontolerant/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ParameterizedEndpointVersionTolerant/setup.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ParameterizedEndpointVersionTolerant/setup.py index 428c21c8f57..c1f03fe870b 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ParameterizedEndpointVersionTolerant/setup.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ParameterizedEndpointVersionTolerant/setup.py @@ -8,7 +8,6 @@ from setuptools import setup, find_packages - PACKAGE_NAME = "parmaterizedendpointclient" version = "0.1.0" diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ReportVersionTolerant/reportversiontolerant/_operations/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ReportVersionTolerant/reportversiontolerant/_operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ReportVersionTolerant/reportversiontolerant/_operations/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ReportVersionTolerant/reportversiontolerant/_operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ReportVersionTolerant/reportversiontolerant/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ReportVersionTolerant/reportversiontolerant/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ReportVersionTolerant/reportversiontolerant/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ReportVersionTolerant/reportversiontolerant/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ReportVersionTolerant/reportversiontolerant/aio/_operations/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ReportVersionTolerant/reportversiontolerant/aio/_operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ReportVersionTolerant/reportversiontolerant/aio/_operations/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ReportVersionTolerant/reportversiontolerant/aio/_operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ReportVersionTolerant/reportversiontolerant/aio/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ReportVersionTolerant/reportversiontolerant/aio/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ReportVersionTolerant/reportversiontolerant/aio/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ReportVersionTolerant/reportversiontolerant/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ReportVersionTolerant/setup.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ReportVersionTolerant/setup.py index 66d07493d2b..1267837c19c 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ReportVersionTolerant/setup.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ReportVersionTolerant/setup.py @@ -8,7 +8,6 @@ from setuptools import setup, find_packages - PACKAGE_NAME = "autorestreportservice" version = "0.1.0" diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/RequiredOptionalVersionTolerant/requiredoptionalversiontolerant/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/RequiredOptionalVersionTolerant/requiredoptionalversiontolerant/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/RequiredOptionalVersionTolerant/requiredoptionalversiontolerant/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/RequiredOptionalVersionTolerant/requiredoptionalversiontolerant/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/RequiredOptionalVersionTolerant/requiredoptionalversiontolerant/aio/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/RequiredOptionalVersionTolerant/requiredoptionalversiontolerant/aio/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/RequiredOptionalVersionTolerant/requiredoptionalversiontolerant/aio/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/RequiredOptionalVersionTolerant/requiredoptionalversiontolerant/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/RequiredOptionalVersionTolerant/requiredoptionalversiontolerant/aio/operations/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/RequiredOptionalVersionTolerant/requiredoptionalversiontolerant/aio/operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/RequiredOptionalVersionTolerant/requiredoptionalversiontolerant/aio/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/RequiredOptionalVersionTolerant/requiredoptionalversiontolerant/aio/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/RequiredOptionalVersionTolerant/requiredoptionalversiontolerant/operations/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/RequiredOptionalVersionTolerant/requiredoptionalversiontolerant/operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/RequiredOptionalVersionTolerant/requiredoptionalversiontolerant/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/RequiredOptionalVersionTolerant/requiredoptionalversiontolerant/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/RequiredOptionalVersionTolerant/setup.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/RequiredOptionalVersionTolerant/setup.py index 4aaefeadddb..303c9ff2a46 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/RequiredOptionalVersionTolerant/setup.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/RequiredOptionalVersionTolerant/setup.py @@ -8,7 +8,6 @@ from setuptools import setup, find_packages - PACKAGE_NAME = "autorestrequiredoptionaltestservice" version = "0.1.0" diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ReservedWordsVersionTolerant/reservedwordsversiontolerant/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ReservedWordsVersionTolerant/reservedwordsversiontolerant/_patch.py index 250034244e5..2c0cb76a903 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ReservedWordsVersionTolerant/reservedwordsversiontolerant/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ReservedWordsVersionTolerant/reservedwordsversiontolerant/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import Any, Dict, List, cast from azure.core.exceptions import ( diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ReservedWordsVersionTolerant/reservedwordsversiontolerant/aio/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ReservedWordsVersionTolerant/reservedwordsversiontolerant/aio/_patch.py index 74a8d056717..3c0436306d0 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ReservedWordsVersionTolerant/reservedwordsversiontolerant/aio/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ReservedWordsVersionTolerant/reservedwordsversiontolerant/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import Any, Dict, List from azure.core.tracing.decorator_async import distributed_trace_async diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ReservedWordsVersionTolerant/reservedwordsversiontolerant/aio/operations/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ReservedWordsVersionTolerant/reservedwordsversiontolerant/aio/operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ReservedWordsVersionTolerant/reservedwordsversiontolerant/aio/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ReservedWordsVersionTolerant/reservedwordsversiontolerant/aio/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ReservedWordsVersionTolerant/reservedwordsversiontolerant/operations/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ReservedWordsVersionTolerant/reservedwordsversiontolerant/operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ReservedWordsVersionTolerant/reservedwordsversiontolerant/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ReservedWordsVersionTolerant/reservedwordsversiontolerant/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ReservedWordsVersionTolerant/setup.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ReservedWordsVersionTolerant/setup.py index d78c7dee390..22425592a4e 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ReservedWordsVersionTolerant/setup.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ReservedWordsVersionTolerant/setup.py @@ -8,7 +8,6 @@ from setuptools import setup, find_packages - PACKAGE_NAME = "reservedwordsclient" version = "0.1.0" diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/SecurityAadSwaggerVersionTolerant/securityaadswaggerversiontolerant/_operations/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/SecurityAadSwaggerVersionTolerant/securityaadswaggerversiontolerant/_operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/SecurityAadSwaggerVersionTolerant/securityaadswaggerversiontolerant/_operations/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/SecurityAadSwaggerVersionTolerant/securityaadswaggerversiontolerant/_operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/SecurityAadSwaggerVersionTolerant/securityaadswaggerversiontolerant/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/SecurityAadSwaggerVersionTolerant/securityaadswaggerversiontolerant/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/SecurityAadSwaggerVersionTolerant/securityaadswaggerversiontolerant/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/SecurityAadSwaggerVersionTolerant/securityaadswaggerversiontolerant/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/SecurityAadSwaggerVersionTolerant/securityaadswaggerversiontolerant/aio/_operations/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/SecurityAadSwaggerVersionTolerant/securityaadswaggerversiontolerant/aio/_operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/SecurityAadSwaggerVersionTolerant/securityaadswaggerversiontolerant/aio/_operations/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/SecurityAadSwaggerVersionTolerant/securityaadswaggerversiontolerant/aio/_operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/SecurityAadSwaggerVersionTolerant/securityaadswaggerversiontolerant/aio/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/SecurityAadSwaggerVersionTolerant/securityaadswaggerversiontolerant/aio/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/SecurityAadSwaggerVersionTolerant/securityaadswaggerversiontolerant/aio/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/SecurityAadSwaggerVersionTolerant/securityaadswaggerversiontolerant/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/SecurityAadSwaggerVersionTolerant/setup.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/SecurityAadSwaggerVersionTolerant/setup.py index a8f2d219068..f669b17405a 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/SecurityAadSwaggerVersionTolerant/setup.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/SecurityAadSwaggerVersionTolerant/setup.py @@ -8,7 +8,6 @@ from setuptools import setup, find_packages - PACKAGE_NAME = "autorestsecurityaad" version = "0.1.0" diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/SecurityKeySwaggerVersionTolerant/securitykeyswaggerversiontolerant/_operations/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/SecurityKeySwaggerVersionTolerant/securitykeyswaggerversiontolerant/_operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/SecurityKeySwaggerVersionTolerant/securitykeyswaggerversiontolerant/_operations/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/SecurityKeySwaggerVersionTolerant/securitykeyswaggerversiontolerant/_operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/SecurityKeySwaggerVersionTolerant/securitykeyswaggerversiontolerant/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/SecurityKeySwaggerVersionTolerant/securitykeyswaggerversiontolerant/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/SecurityKeySwaggerVersionTolerant/securitykeyswaggerversiontolerant/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/SecurityKeySwaggerVersionTolerant/securitykeyswaggerversiontolerant/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/SecurityKeySwaggerVersionTolerant/securitykeyswaggerversiontolerant/aio/_operations/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/SecurityKeySwaggerVersionTolerant/securitykeyswaggerversiontolerant/aio/_operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/SecurityKeySwaggerVersionTolerant/securitykeyswaggerversiontolerant/aio/_operations/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/SecurityKeySwaggerVersionTolerant/securitykeyswaggerversiontolerant/aio/_operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/SecurityKeySwaggerVersionTolerant/securitykeyswaggerversiontolerant/aio/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/SecurityKeySwaggerVersionTolerant/securitykeyswaggerversiontolerant/aio/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/SecurityKeySwaggerVersionTolerant/securitykeyswaggerversiontolerant/aio/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/SecurityKeySwaggerVersionTolerant/securitykeyswaggerversiontolerant/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/SecurityKeySwaggerVersionTolerant/setup.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/SecurityKeySwaggerVersionTolerant/setup.py index f5cdf906960..4dc440cb844 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/SecurityKeySwaggerVersionTolerant/setup.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/SecurityKeySwaggerVersionTolerant/setup.py @@ -8,7 +8,6 @@ from setuptools import setup, find_packages - PACKAGE_NAME = "autorestsecuritykey" version = "0.1.0" diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/UrlMultiCollectionFormatVersionTolerant/setup.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/UrlMultiCollectionFormatVersionTolerant/setup.py index c0aa5918898..fec5875a951 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/UrlMultiCollectionFormatVersionTolerant/setup.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/UrlMultiCollectionFormatVersionTolerant/setup.py @@ -8,7 +8,6 @@ from setuptools import setup, find_packages - PACKAGE_NAME = "autoresturlmutlicollectionformattestservice" version = "0.1.0" diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/UrlMultiCollectionFormatVersionTolerant/urlmulticollectionformatversiontolerant/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/UrlMultiCollectionFormatVersionTolerant/urlmulticollectionformatversiontolerant/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/UrlMultiCollectionFormatVersionTolerant/urlmulticollectionformatversiontolerant/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/UrlMultiCollectionFormatVersionTolerant/urlmulticollectionformatversiontolerant/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/UrlMultiCollectionFormatVersionTolerant/urlmulticollectionformatversiontolerant/aio/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/UrlMultiCollectionFormatVersionTolerant/urlmulticollectionformatversiontolerant/aio/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/UrlMultiCollectionFormatVersionTolerant/urlmulticollectionformatversiontolerant/aio/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/UrlMultiCollectionFormatVersionTolerant/urlmulticollectionformatversiontolerant/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/UrlMultiCollectionFormatVersionTolerant/urlmulticollectionformatversiontolerant/aio/operations/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/UrlMultiCollectionFormatVersionTolerant/urlmulticollectionformatversiontolerant/aio/operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/UrlMultiCollectionFormatVersionTolerant/urlmulticollectionformatversiontolerant/aio/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/UrlMultiCollectionFormatVersionTolerant/urlmulticollectionformatversiontolerant/aio/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/UrlMultiCollectionFormatVersionTolerant/urlmulticollectionformatversiontolerant/operations/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/UrlMultiCollectionFormatVersionTolerant/urlmulticollectionformatversiontolerant/operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/UrlMultiCollectionFormatVersionTolerant/urlmulticollectionformatversiontolerant/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/UrlMultiCollectionFormatVersionTolerant/urlmulticollectionformatversiontolerant/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/UrlVersionTolerant/setup.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/UrlVersionTolerant/setup.py index 0d2b4a6ea1e..db630a0f855 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/UrlVersionTolerant/setup.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/UrlVersionTolerant/setup.py @@ -8,7 +8,6 @@ from setuptools import setup, find_packages - PACKAGE_NAME = "autoresturltestservice" version = "0.1.0" diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/UrlVersionTolerant/urlversiontolerant/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/UrlVersionTolerant/urlversiontolerant/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/UrlVersionTolerant/urlversiontolerant/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/UrlVersionTolerant/urlversiontolerant/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/UrlVersionTolerant/urlversiontolerant/aio/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/UrlVersionTolerant/urlversiontolerant/aio/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/UrlVersionTolerant/urlversiontolerant/aio/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/UrlVersionTolerant/urlversiontolerant/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/UrlVersionTolerant/urlversiontolerant/aio/operations/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/UrlVersionTolerant/urlversiontolerant/aio/operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/UrlVersionTolerant/urlversiontolerant/aio/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/UrlVersionTolerant/urlversiontolerant/aio/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/UrlVersionTolerant/urlversiontolerant/operations/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/UrlVersionTolerant/urlversiontolerant/operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/UrlVersionTolerant/urlversiontolerant/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/UrlVersionTolerant/urlversiontolerant/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ValidationVersionTolerant/setup.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ValidationVersionTolerant/setup.py index 33fc7a81e6d..3b2e232937f 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ValidationVersionTolerant/setup.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ValidationVersionTolerant/setup.py @@ -8,7 +8,6 @@ from setuptools import setup, find_packages - PACKAGE_NAME = "autorestvalidationtest" version = "0.1.0" diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ValidationVersionTolerant/validationversiontolerant/_operations/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ValidationVersionTolerant/validationversiontolerant/_operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ValidationVersionTolerant/validationversiontolerant/_operations/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ValidationVersionTolerant/validationversiontolerant/_operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ValidationVersionTolerant/validationversiontolerant/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ValidationVersionTolerant/validationversiontolerant/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ValidationVersionTolerant/validationversiontolerant/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ValidationVersionTolerant/validationversiontolerant/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ValidationVersionTolerant/validationversiontolerant/aio/_operations/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ValidationVersionTolerant/validationversiontolerant/aio/_operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ValidationVersionTolerant/validationversiontolerant/aio/_operations/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ValidationVersionTolerant/validationversiontolerant/aio/_operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ValidationVersionTolerant/validationversiontolerant/aio/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ValidationVersionTolerant/validationversiontolerant/aio/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ValidationVersionTolerant/validationversiontolerant/aio/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/ValidationVersionTolerant/validationversiontolerant/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/XmlVersionTolerant/setup.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/XmlVersionTolerant/setup.py index 9b979ba7218..fc400ae5604 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/XmlVersionTolerant/setup.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/XmlVersionTolerant/setup.py @@ -8,7 +8,6 @@ from setuptools import setup, find_packages - PACKAGE_NAME = "autorestswaggerbatxmlservice" version = "0.1.0" diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/XmlVersionTolerant/xmlserviceversiontolerant/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/XmlVersionTolerant/xmlserviceversiontolerant/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/XmlVersionTolerant/xmlserviceversiontolerant/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/XmlVersionTolerant/xmlserviceversiontolerant/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/XmlVersionTolerant/xmlserviceversiontolerant/aio/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/XmlVersionTolerant/xmlserviceversiontolerant/aio/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/XmlVersionTolerant/xmlserviceversiontolerant/aio/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/XmlVersionTolerant/xmlserviceversiontolerant/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/XmlVersionTolerant/xmlserviceversiontolerant/aio/operations/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/XmlVersionTolerant/xmlserviceversiontolerant/aio/operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/XmlVersionTolerant/xmlserviceversiontolerant/aio/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/XmlVersionTolerant/xmlserviceversiontolerant/aio/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/XmlVersionTolerant/xmlserviceversiontolerant/models/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/XmlVersionTolerant/xmlserviceversiontolerant/models/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/XmlVersionTolerant/xmlserviceversiontolerant/models/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/XmlVersionTolerant/xmlserviceversiontolerant/models/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/XmlVersionTolerant/xmlserviceversiontolerant/operations/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/XmlVersionTolerant/xmlserviceversiontolerant/operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/XmlVersionTolerant/xmlserviceversiontolerant/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/XmlVersionTolerant/xmlserviceversiontolerant/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/XmsErrorResponseVersionTolerant/setup.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/XmsErrorResponseVersionTolerant/setup.py index 015677976be..5b4ca51162e 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/XmsErrorResponseVersionTolerant/setup.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/XmsErrorResponseVersionTolerant/setup.py @@ -8,7 +8,6 @@ from setuptools import setup, find_packages - PACKAGE_NAME = "xmserrorresponseextensions" version = "0.1.0" diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/XmsErrorResponseVersionTolerant/xmserrorresponseversiontolerant/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/XmsErrorResponseVersionTolerant/xmserrorresponseversiontolerant/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/XmsErrorResponseVersionTolerant/xmserrorresponseversiontolerant/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/XmsErrorResponseVersionTolerant/xmserrorresponseversiontolerant/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/XmsErrorResponseVersionTolerant/xmserrorresponseversiontolerant/aio/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/XmsErrorResponseVersionTolerant/xmserrorresponseversiontolerant/aio/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/XmsErrorResponseVersionTolerant/xmserrorresponseversiontolerant/aio/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/XmsErrorResponseVersionTolerant/xmserrorresponseversiontolerant/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/XmsErrorResponseVersionTolerant/xmserrorresponseversiontolerant/aio/operations/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/XmsErrorResponseVersionTolerant/xmserrorresponseversiontolerant/aio/operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/XmsErrorResponseVersionTolerant/xmserrorresponseversiontolerant/aio/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/XmsErrorResponseVersionTolerant/xmserrorresponseversiontolerant/aio/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/XmsErrorResponseVersionTolerant/xmserrorresponseversiontolerant/operations/_patch.py b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/XmsErrorResponseVersionTolerant/xmserrorresponseversiontolerant/operations/_patch.py index 49900f6ab12..47e75e87874 100644 --- a/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/XmsErrorResponseVersionTolerant/xmserrorresponseversiontolerant/operations/_patch.py +++ b/packages/autorest.python/test/vanilla/version-tolerant/Expected/AcceptanceTests/XmsErrorResponseVersionTolerant/xmserrorresponseversiontolerant/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/dev_requirements.txt b/packages/typespec-python/dev_requirements.txt index 7f984f3a405..056a6017d9f 100644 --- a/packages/typespec-python/dev_requirements.txt +++ b/packages/typespec-python/dev_requirements.txt @@ -7,7 +7,7 @@ colorama==0.4.6 debugpy==1.8.12 pytest==8.3.4 coverage==7.6.1 -black==24.8.0 +black==26.3.1 ptvsd==4.3.2 types-PyYAML==6.0.12.20241230 diff --git a/packages/typespec-python/eng/scripts/setup/venvtools.py b/packages/typespec-python/eng/scripts/setup/venvtools.py index f15abdd5250..c733957dc90 100644 --- a/packages/typespec-python/eng/scripts/setup/venvtools.py +++ b/packages/typespec-python/eng/scripts/setup/venvtools.py @@ -8,7 +8,6 @@ import sys from pathlib import Path - _ROOT_DIR = Path(__file__).parent.parent diff --git a/packages/typespec-python/package.json b/packages/typespec-python/package.json index b5f1b45beb5..ff29fd752b4 100644 --- a/packages/typespec-python/package.json +++ b/packages/typespec-python/package.json @@ -65,7 +65,7 @@ "@typespec/xml": ">=0.81.0 <1.0.0" }, "dependencies": { - "@typespec/http-client-python": "https://artprodcus3.artifacts.visualstudio.com/A0fb41ef4-5012-48a9-bf39-4ee3de03ee35/29ec6040-b234-4e31-b139-33dc4287b756/_apis/artifact/cGlwZWxpbmVhcnRpZmFjdDovL2F6dXJlLXNkay9wcm9qZWN0SWQvMjllYzYwNDAtYjIzNC00ZTMxLWIxMzktMzNkYzQyODdiNzU2L2J1aWxkSWQvNjE1ODIzMi9hcnRpZmFjdE5hbWUvYnVpbGRfYXJ0aWZhY3RzX3B5dGhvbg2/content?format=file&subPath=%2Fpackages%2Ftypespec-http-client-python-0.28.3.tgz", + "@typespec/http-client-python": "https://artprodcus3.artifacts.visualstudio.com/A0fb41ef4-5012-48a9-bf39-4ee3de03ee35/29ec6040-b234-4e31-b139-33dc4287b756/_apis/artifact/cGlwZWxpbmVhcnRpZmFjdDovL2F6dXJlLXNkay9wcm9qZWN0SWQvMjllYzYwNDAtYjIzNC00ZTMxLWIxMzktMzNkYzQyODdiNzU2L2J1aWxkSWQvNjE1OTE5Ny9hcnRpZmFjdE5hbWUvYnVpbGRfYXJ0aWZhY3RzX3B5dGhvbg2/content?format=file&subPath=%2Fpackages%2Ftypespec-http-client-python-0.28.3.tgz", "fs-extra": "~11.2.0", "js-yaml": "~4.1.0", "semver": "~7.6.2", diff --git a/packages/typespec-python/tests/generated/azure/authentication-api-key/authentication/apikey/_operations/_patch.py b/packages/typespec-python/tests/generated/azure/authentication-api-key/authentication/apikey/_operations/_patch.py index fc4fac79b3b..8391c35e9d5 100644 --- a/packages/typespec-python/tests/generated/azure/authentication-api-key/authentication/apikey/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/authentication-api-key/authentication/apikey/_operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List from ._operations import _ApiKeyClientOperationsMixin as Generated diff --git a/packages/typespec-python/tests/generated/azure/authentication-api-key/authentication/apikey/_patch.py b/packages/typespec-python/tests/generated/azure/authentication-api-key/authentication/apikey/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/authentication-api-key/authentication/apikey/_patch.py +++ b/packages/typespec-python/tests/generated/azure/authentication-api-key/authentication/apikey/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/authentication-api-key/authentication/apikey/aio/_operations/_patch.py b/packages/typespec-python/tests/generated/azure/authentication-api-key/authentication/apikey/aio/_operations/_patch.py index fc4fac79b3b..8391c35e9d5 100644 --- a/packages/typespec-python/tests/generated/azure/authentication-api-key/authentication/apikey/aio/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/authentication-api-key/authentication/apikey/aio/_operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List from ._operations import _ApiKeyClientOperationsMixin as Generated diff --git a/packages/typespec-python/tests/generated/azure/authentication-api-key/authentication/apikey/aio/_patch.py b/packages/typespec-python/tests/generated/azure/authentication-api-key/authentication/apikey/aio/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/authentication-api-key/authentication/apikey/aio/_patch.py +++ b/packages/typespec-python/tests/generated/azure/authentication-api-key/authentication/apikey/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/authentication-api-key/authentication/apikey/models/_patch.py b/packages/typespec-python/tests/generated/azure/authentication-api-key/authentication/apikey/models/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/authentication-api-key/authentication/apikey/models/_patch.py +++ b/packages/typespec-python/tests/generated/azure/authentication-api-key/authentication/apikey/models/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/authentication-http-custom/authentication/http/custom/_operations/_patch.py b/packages/typespec-python/tests/generated/azure/authentication-http-custom/authentication/http/custom/_operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/authentication-http-custom/authentication/http/custom/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/authentication-http-custom/authentication/http/custom/_operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/authentication-http-custom/authentication/http/custom/_patch.py b/packages/typespec-python/tests/generated/azure/authentication-http-custom/authentication/http/custom/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/authentication-http-custom/authentication/http/custom/_patch.py +++ b/packages/typespec-python/tests/generated/azure/authentication-http-custom/authentication/http/custom/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/authentication-http-custom/authentication/http/custom/aio/_operations/_patch.py b/packages/typespec-python/tests/generated/azure/authentication-http-custom/authentication/http/custom/aio/_operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/authentication-http-custom/authentication/http/custom/aio/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/authentication-http-custom/authentication/http/custom/aio/_operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/authentication-http-custom/authentication/http/custom/aio/_patch.py b/packages/typespec-python/tests/generated/azure/authentication-http-custom/authentication/http/custom/aio/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/authentication-http-custom/authentication/http/custom/aio/_patch.py +++ b/packages/typespec-python/tests/generated/azure/authentication-http-custom/authentication/http/custom/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/authentication-http-custom/authentication/http/custom/models/_patch.py b/packages/typespec-python/tests/generated/azure/authentication-http-custom/authentication/http/custom/models/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/authentication-http-custom/authentication/http/custom/models/_patch.py +++ b/packages/typespec-python/tests/generated/azure/authentication-http-custom/authentication/http/custom/models/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/authentication-noauth-union/authentication/noauth/union/_operations/_patch.py b/packages/typespec-python/tests/generated/azure/authentication-noauth-union/authentication/noauth/union/_operations/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/authentication-noauth-union/authentication/noauth/union/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/authentication-noauth-union/authentication/noauth/union/_operations/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/authentication-noauth-union/authentication/noauth/union/_patch.py b/packages/typespec-python/tests/generated/azure/authentication-noauth-union/authentication/noauth/union/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/authentication-noauth-union/authentication/noauth/union/_patch.py +++ b/packages/typespec-python/tests/generated/azure/authentication-noauth-union/authentication/noauth/union/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/authentication-noauth-union/authentication/noauth/union/aio/_operations/_patch.py b/packages/typespec-python/tests/generated/azure/authentication-noauth-union/authentication/noauth/union/aio/_operations/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/authentication-noauth-union/authentication/noauth/union/aio/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/authentication-noauth-union/authentication/noauth/union/aio/_operations/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/authentication-noauth-union/authentication/noauth/union/aio/_patch.py b/packages/typespec-python/tests/generated/azure/authentication-noauth-union/authentication/noauth/union/aio/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/authentication-noauth-union/authentication/noauth/union/aio/_patch.py +++ b/packages/typespec-python/tests/generated/azure/authentication-noauth-union/authentication/noauth/union/aio/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/authentication-oauth2/authentication/oauth2/_operations/_patch.py b/packages/typespec-python/tests/generated/azure/authentication-oauth2/authentication/oauth2/_operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/authentication-oauth2/authentication/oauth2/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/authentication-oauth2/authentication/oauth2/_operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/authentication-oauth2/authentication/oauth2/_patch.py b/packages/typespec-python/tests/generated/azure/authentication-oauth2/authentication/oauth2/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/authentication-oauth2/authentication/oauth2/_patch.py +++ b/packages/typespec-python/tests/generated/azure/authentication-oauth2/authentication/oauth2/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/authentication-oauth2/authentication/oauth2/aio/_operations/_patch.py b/packages/typespec-python/tests/generated/azure/authentication-oauth2/authentication/oauth2/aio/_operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/authentication-oauth2/authentication/oauth2/aio/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/authentication-oauth2/authentication/oauth2/aio/_operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/authentication-oauth2/authentication/oauth2/aio/_patch.py b/packages/typespec-python/tests/generated/azure/authentication-oauth2/authentication/oauth2/aio/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/authentication-oauth2/authentication/oauth2/aio/_patch.py +++ b/packages/typespec-python/tests/generated/azure/authentication-oauth2/authentication/oauth2/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/authentication-oauth2/authentication/oauth2/models/_patch.py b/packages/typespec-python/tests/generated/azure/authentication-oauth2/authentication/oauth2/models/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/authentication-oauth2/authentication/oauth2/models/_patch.py +++ b/packages/typespec-python/tests/generated/azure/authentication-oauth2/authentication/oauth2/models/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/authentication-union/authentication/union/_operations/_patch.py b/packages/typespec-python/tests/generated/azure/authentication-union/authentication/union/_operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/authentication-union/authentication/union/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/authentication-union/authentication/union/_operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/authentication-union/authentication/union/_patch.py b/packages/typespec-python/tests/generated/azure/authentication-union/authentication/union/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/authentication-union/authentication/union/_patch.py +++ b/packages/typespec-python/tests/generated/azure/authentication-union/authentication/union/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/authentication-union/authentication/union/aio/_operations/_patch.py b/packages/typespec-python/tests/generated/azure/authentication-union/authentication/union/aio/_operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/authentication-union/authentication/union/aio/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/authentication-union/authentication/union/aio/_operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/authentication-union/authentication/union/aio/_patch.py b/packages/typespec-python/tests/generated/azure/authentication-union/authentication/union/aio/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/authentication-union/authentication/union/aio/_patch.py +++ b/packages/typespec-python/tests/generated/azure/authentication-union/authentication/union/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-access/specs/azure/clientgenerator/core/access/_patch.py b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-access/specs/azure/clientgenerator/core/access/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-access/specs/azure/clientgenerator/core/access/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-access/specs/azure/clientgenerator/core/access/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-access/specs/azure/clientgenerator/core/access/aio/_patch.py b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-access/specs/azure/clientgenerator/core/access/aio/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-access/specs/azure/clientgenerator/core/access/aio/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-access/specs/azure/clientgenerator/core/access/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-access/specs/azure/clientgenerator/core/access/aio/operations/_patch.py b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-access/specs/azure/clientgenerator/core/access/aio/operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-access/specs/azure/clientgenerator/core/access/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-access/specs/azure/clientgenerator/core/access/aio/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-access/specs/azure/clientgenerator/core/access/models/_patch.py b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-access/specs/azure/clientgenerator/core/access/models/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-access/specs/azure/clientgenerator/core/access/models/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-access/specs/azure/clientgenerator/core/access/models/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-access/specs/azure/clientgenerator/core/access/operations/_patch.py b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-access/specs/azure/clientgenerator/core/access/operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-access/specs/azure/clientgenerator/core/access/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-access/specs/azure/clientgenerator/core/access/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-alternate-type/specs/azure/clientgenerator/core/alternatetype/_patch.py b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-alternate-type/specs/azure/clientgenerator/core/alternatetype/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-alternate-type/specs/azure/clientgenerator/core/alternatetype/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-alternate-type/specs/azure/clientgenerator/core/alternatetype/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-alternate-type/specs/azure/clientgenerator/core/alternatetype/aio/_patch.py b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-alternate-type/specs/azure/clientgenerator/core/alternatetype/aio/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-alternate-type/specs/azure/clientgenerator/core/alternatetype/aio/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-alternate-type/specs/azure/clientgenerator/core/alternatetype/aio/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-alternate-type/specs/azure/clientgenerator/core/alternatetype/aio/operations/_patch.py b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-alternate-type/specs/azure/clientgenerator/core/alternatetype/aio/operations/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-alternate-type/specs/azure/clientgenerator/core/alternatetype/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-alternate-type/specs/azure/clientgenerator/core/alternatetype/aio/operations/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-alternate-type/specs/azure/clientgenerator/core/alternatetype/models/_patch.py b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-alternate-type/specs/azure/clientgenerator/core/alternatetype/models/_patch.py index fa513da4c00..565fc9249b6 100644 --- a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-alternate-type/specs/azure/clientgenerator/core/alternatetype/models/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-alternate-type/specs/azure/clientgenerator/core/alternatetype/models/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import Type import geojson from .._utils.model_base import TYPE_HANDLER_REGISTRY diff --git a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-alternate-type/specs/azure/clientgenerator/core/alternatetype/operations/_patch.py b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-alternate-type/specs/azure/clientgenerator/core/alternatetype/operations/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-alternate-type/specs/azure/clientgenerator/core/alternatetype/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-alternate-type/specs/azure/clientgenerator/core/alternatetype/operations/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-api-version-header/client/alternateapiversion/service/header/_operations/_patch.py b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-api-version-header/client/alternateapiversion/service/header/_operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-api-version-header/client/alternateapiversion/service/header/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-api-version-header/client/alternateapiversion/service/header/_operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-api-version-header/client/alternateapiversion/service/header/_patch.py b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-api-version-header/client/alternateapiversion/service/header/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-api-version-header/client/alternateapiversion/service/header/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-api-version-header/client/alternateapiversion/service/header/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-api-version-header/client/alternateapiversion/service/header/aio/_operations/_patch.py b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-api-version-header/client/alternateapiversion/service/header/aio/_operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-api-version-header/client/alternateapiversion/service/header/aio/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-api-version-header/client/alternateapiversion/service/header/aio/_operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-api-version-header/client/alternateapiversion/service/header/aio/_patch.py b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-api-version-header/client/alternateapiversion/service/header/aio/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-api-version-header/client/alternateapiversion/service/header/aio/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-api-version-header/client/alternateapiversion/service/header/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-api-version-path/client/alternateapiversion/service/path/_operations/_patch.py b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-api-version-path/client/alternateapiversion/service/path/_operations/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-api-version-path/client/alternateapiversion/service/path/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-api-version-path/client/alternateapiversion/service/path/_operations/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-api-version-path/client/alternateapiversion/service/path/_patch.py b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-api-version-path/client/alternateapiversion/service/path/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-api-version-path/client/alternateapiversion/service/path/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-api-version-path/client/alternateapiversion/service/path/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-api-version-path/client/alternateapiversion/service/path/aio/_operations/_patch.py b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-api-version-path/client/alternateapiversion/service/path/aio/_operations/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-api-version-path/client/alternateapiversion/service/path/aio/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-api-version-path/client/alternateapiversion/service/path/aio/_operations/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-api-version-path/client/alternateapiversion/service/path/aio/_patch.py b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-api-version-path/client/alternateapiversion/service/path/aio/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-api-version-path/client/alternateapiversion/service/path/aio/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-api-version-path/client/alternateapiversion/service/path/aio/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-api-version-query/client/alternateapiversion/service/query/_operations/_patch.py b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-api-version-query/client/alternateapiversion/service/query/_operations/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-api-version-query/client/alternateapiversion/service/query/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-api-version-query/client/alternateapiversion/service/query/_operations/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-api-version-query/client/alternateapiversion/service/query/_patch.py b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-api-version-query/client/alternateapiversion/service/query/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-api-version-query/client/alternateapiversion/service/query/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-api-version-query/client/alternateapiversion/service/query/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-api-version-query/client/alternateapiversion/service/query/aio/_operations/_patch.py b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-api-version-query/client/alternateapiversion/service/query/aio/_operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-api-version-query/client/alternateapiversion/service/query/aio/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-api-version-query/client/alternateapiversion/service/query/aio/_operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-api-version-query/client/alternateapiversion/service/query/aio/_patch.py b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-api-version-query/client/alternateapiversion/service/query/aio/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-api-version-query/client/alternateapiversion/service/query/aio/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-api-version-query/client/alternateapiversion/service/query/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-default-value/specs/azure/clientgenerator/core/clientdefaultvalue/_operations/_patch.py b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-default-value/specs/azure/clientgenerator/core/clientdefaultvalue/_operations/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-default-value/specs/azure/clientgenerator/core/clientdefaultvalue/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-default-value/specs/azure/clientgenerator/core/clientdefaultvalue/_operations/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-default-value/specs/azure/clientgenerator/core/clientdefaultvalue/_patch.py b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-default-value/specs/azure/clientgenerator/core/clientdefaultvalue/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-default-value/specs/azure/clientgenerator/core/clientdefaultvalue/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-default-value/specs/azure/clientgenerator/core/clientdefaultvalue/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-default-value/specs/azure/clientgenerator/core/clientdefaultvalue/aio/_operations/_patch.py b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-default-value/specs/azure/clientgenerator/core/clientdefaultvalue/aio/_operations/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-default-value/specs/azure/clientgenerator/core/clientdefaultvalue/aio/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-default-value/specs/azure/clientgenerator/core/clientdefaultvalue/aio/_operations/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-default-value/specs/azure/clientgenerator/core/clientdefaultvalue/aio/_patch.py b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-default-value/specs/azure/clientgenerator/core/clientdefaultvalue/aio/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-default-value/specs/azure/clientgenerator/core/clientdefaultvalue/aio/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-default-value/specs/azure/clientgenerator/core/clientdefaultvalue/aio/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-default-value/specs/azure/clientgenerator/core/clientdefaultvalue/models/_patch.py b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-default-value/specs/azure/clientgenerator/core/clientdefaultvalue/models/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-default-value/specs/azure/clientgenerator/core/clientdefaultvalue/models/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-default-value/specs/azure/clientgenerator/core/clientdefaultvalue/models/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-initialization-default/specs/azure/clientgenerator/core/clientinitialization/default/_operations/_patch.py b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-initialization-default/specs/azure/clientgenerator/core/clientinitialization/default/_operations/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-initialization-default/specs/azure/clientgenerator/core/clientinitialization/default/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-initialization-default/specs/azure/clientgenerator/core/clientinitialization/default/_operations/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-initialization-default/specs/azure/clientgenerator/core/clientinitialization/default/_patch.py b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-initialization-default/specs/azure/clientgenerator/core/clientinitialization/default/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-initialization-default/specs/azure/clientgenerator/core/clientinitialization/default/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-initialization-default/specs/azure/clientgenerator/core/clientinitialization/default/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-initialization-default/specs/azure/clientgenerator/core/clientinitialization/default/aio/_operations/_patch.py b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-initialization-default/specs/azure/clientgenerator/core/clientinitialization/default/aio/_operations/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-initialization-default/specs/azure/clientgenerator/core/clientinitialization/default/aio/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-initialization-default/specs/azure/clientgenerator/core/clientinitialization/default/aio/_operations/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-initialization-default/specs/azure/clientgenerator/core/clientinitialization/default/aio/_patch.py b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-initialization-default/specs/azure/clientgenerator/core/clientinitialization/default/aio/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-initialization-default/specs/azure/clientgenerator/core/clientinitialization/default/aio/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-initialization-default/specs/azure/clientgenerator/core/clientinitialization/default/aio/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-initialization-default/specs/azure/clientgenerator/core/clientinitialization/default/models/_patch.py b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-initialization-default/specs/azure/clientgenerator/core/clientinitialization/default/models/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-initialization-default/specs/azure/clientgenerator/core/clientinitialization/default/models/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-initialization-default/specs/azure/clientgenerator/core/clientinitialization/default/models/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-initialization-individually/specs/azure/clientgenerator/core/clientinitialization/individually/_operations/_patch.py b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-initialization-individually/specs/azure/clientgenerator/core/clientinitialization/individually/_operations/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-initialization-individually/specs/azure/clientgenerator/core/clientinitialization/individually/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-initialization-individually/specs/azure/clientgenerator/core/clientinitialization/individually/_operations/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-initialization-individually/specs/azure/clientgenerator/core/clientinitialization/individually/_patch.py b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-initialization-individually/specs/azure/clientgenerator/core/clientinitialization/individually/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-initialization-individually/specs/azure/clientgenerator/core/clientinitialization/individually/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-initialization-individually/specs/azure/clientgenerator/core/clientinitialization/individually/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-initialization-individually/specs/azure/clientgenerator/core/clientinitialization/individually/aio/_operations/_patch.py b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-initialization-individually/specs/azure/clientgenerator/core/clientinitialization/individually/aio/_operations/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-initialization-individually/specs/azure/clientgenerator/core/clientinitialization/individually/aio/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-initialization-individually/specs/azure/clientgenerator/core/clientinitialization/individually/aio/_operations/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-initialization-individually/specs/azure/clientgenerator/core/clientinitialization/individually/aio/_patch.py b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-initialization-individually/specs/azure/clientgenerator/core/clientinitialization/individually/aio/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-initialization-individually/specs/azure/clientgenerator/core/clientinitialization/individually/aio/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-initialization-individually/specs/azure/clientgenerator/core/clientinitialization/individually/aio/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-initialization-individually/specs/azure/clientgenerator/core/clientinitialization/individually/models/_patch.py b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-initialization-individually/specs/azure/clientgenerator/core/clientinitialization/individually/models/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-initialization-individually/specs/azure/clientgenerator/core/clientinitialization/individually/models/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-initialization-individually/specs/azure/clientgenerator/core/clientinitialization/individually/models/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-initialization-individuallyparent/specs/azure/clientgenerator/core/clientinitialization/individuallyparent/_patch.py b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-initialization-individuallyparent/specs/azure/clientgenerator/core/clientinitialization/individuallyparent/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-initialization-individuallyparent/specs/azure/clientgenerator/core/clientinitialization/individuallyparent/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-initialization-individuallyparent/specs/azure/clientgenerator/core/clientinitialization/individuallyparent/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-initialization-individuallyparent/specs/azure/clientgenerator/core/clientinitialization/individuallyparent/aio/_patch.py b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-initialization-individuallyparent/specs/azure/clientgenerator/core/clientinitialization/individuallyparent/aio/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-initialization-individuallyparent/specs/azure/clientgenerator/core/clientinitialization/individuallyparent/aio/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-initialization-individuallyparent/specs/azure/clientgenerator/core/clientinitialization/individuallyparent/aio/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-initialization-individuallyparent/specs/azure/clientgenerator/core/clientinitialization/individuallyparent/aio/operations/_patch.py b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-initialization-individuallyparent/specs/azure/clientgenerator/core/clientinitialization/individuallyparent/aio/operations/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-initialization-individuallyparent/specs/azure/clientgenerator/core/clientinitialization/individuallyparent/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-initialization-individuallyparent/specs/azure/clientgenerator/core/clientinitialization/individuallyparent/aio/operations/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-initialization-individuallyparent/specs/azure/clientgenerator/core/clientinitialization/individuallyparent/models/_patch.py b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-initialization-individuallyparent/specs/azure/clientgenerator/core/clientinitialization/individuallyparent/models/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-initialization-individuallyparent/specs/azure/clientgenerator/core/clientinitialization/individuallyparent/models/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-initialization-individuallyparent/specs/azure/clientgenerator/core/clientinitialization/individuallyparent/models/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-initialization-individuallyparent/specs/azure/clientgenerator/core/clientinitialization/individuallyparent/operations/_patch.py b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-initialization-individuallyparent/specs/azure/clientgenerator/core/clientinitialization/individuallyparent/operations/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-initialization-individuallyparent/specs/azure/clientgenerator/core/clientinitialization/individuallyparent/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-initialization-individuallyparent/specs/azure/clientgenerator/core/clientinitialization/individuallyparent/operations/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-initialization/specs/azure/clientgenerator/core/clientinitialization/_patch.py b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-initialization/specs/azure/clientgenerator/core/clientinitialization/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-initialization/specs/azure/clientgenerator/core/clientinitialization/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-initialization/specs/azure/clientgenerator/core/clientinitialization/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-initialization/specs/azure/clientgenerator/core/clientinitialization/aio/_patch.py b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-initialization/specs/azure/clientgenerator/core/clientinitialization/aio/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-initialization/specs/azure/clientgenerator/core/clientinitialization/aio/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-initialization/specs/azure/clientgenerator/core/clientinitialization/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-initialization/specs/azure/clientgenerator/core/clientinitialization/aio/operations/_patch.py b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-initialization/specs/azure/clientgenerator/core/clientinitialization/aio/operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-initialization/specs/azure/clientgenerator/core/clientinitialization/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-initialization/specs/azure/clientgenerator/core/clientinitialization/aio/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-initialization/specs/azure/clientgenerator/core/clientinitialization/models/_patch.py b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-initialization/specs/azure/clientgenerator/core/clientinitialization/models/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-initialization/specs/azure/clientgenerator/core/clientinitialization/models/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-initialization/specs/azure/clientgenerator/core/clientinitialization/models/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-initialization/specs/azure/clientgenerator/core/clientinitialization/operations/_patch.py b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-initialization/specs/azure/clientgenerator/core/clientinitialization/operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-initialization/specs/azure/clientgenerator/core/clientinitialization/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-initialization/specs/azure/clientgenerator/core/clientinitialization/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-location-move-method-parameter-to-client/specs/azure/clientgenerator/core/clientlocation/parameter/_patch.py b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-location-move-method-parameter-to-client/specs/azure/clientgenerator/core/clientlocation/parameter/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-location-move-method-parameter-to-client/specs/azure/clientgenerator/core/clientlocation/parameter/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-location-move-method-parameter-to-client/specs/azure/clientgenerator/core/clientlocation/parameter/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-location-move-method-parameter-to-client/specs/azure/clientgenerator/core/clientlocation/parameter/aio/_patch.py b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-location-move-method-parameter-to-client/specs/azure/clientgenerator/core/clientlocation/parameter/aio/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-location-move-method-parameter-to-client/specs/azure/clientgenerator/core/clientlocation/parameter/aio/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-location-move-method-parameter-to-client/specs/azure/clientgenerator/core/clientlocation/parameter/aio/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-location-move-method-parameter-to-client/specs/azure/clientgenerator/core/clientlocation/parameter/aio/operations/_patch.py b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-location-move-method-parameter-to-client/specs/azure/clientgenerator/core/clientlocation/parameter/aio/operations/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-location-move-method-parameter-to-client/specs/azure/clientgenerator/core/clientlocation/parameter/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-location-move-method-parameter-to-client/specs/azure/clientgenerator/core/clientlocation/parameter/aio/operations/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-location-move-method-parameter-to-client/specs/azure/clientgenerator/core/clientlocation/parameter/models/_patch.py b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-location-move-method-parameter-to-client/specs/azure/clientgenerator/core/clientlocation/parameter/models/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-location-move-method-parameter-to-client/specs/azure/clientgenerator/core/clientlocation/parameter/models/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-location-move-method-parameter-to-client/specs/azure/clientgenerator/core/clientlocation/parameter/models/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-location-move-method-parameter-to-client/specs/azure/clientgenerator/core/clientlocation/parameter/operations/_patch.py b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-location-move-method-parameter-to-client/specs/azure/clientgenerator/core/clientlocation/parameter/operations/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-location-move-method-parameter-to-client/specs/azure/clientgenerator/core/clientlocation/parameter/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-location-move-method-parameter-to-client/specs/azure/clientgenerator/core/clientlocation/parameter/operations/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-location-move-to-existing-sub-client/specs/azure/clientgenerator/core/clientlocation/subclient/_patch.py b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-location-move-to-existing-sub-client/specs/azure/clientgenerator/core/clientlocation/subclient/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-location-move-to-existing-sub-client/specs/azure/clientgenerator/core/clientlocation/subclient/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-location-move-to-existing-sub-client/specs/azure/clientgenerator/core/clientlocation/subclient/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-location-move-to-existing-sub-client/specs/azure/clientgenerator/core/clientlocation/subclient/aio/_patch.py b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-location-move-to-existing-sub-client/specs/azure/clientgenerator/core/clientlocation/subclient/aio/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-location-move-to-existing-sub-client/specs/azure/clientgenerator/core/clientlocation/subclient/aio/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-location-move-to-existing-sub-client/specs/azure/clientgenerator/core/clientlocation/subclient/aio/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-location-move-to-existing-sub-client/specs/azure/clientgenerator/core/clientlocation/subclient/aio/operations/_patch.py b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-location-move-to-existing-sub-client/specs/azure/clientgenerator/core/clientlocation/subclient/aio/operations/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-location-move-to-existing-sub-client/specs/azure/clientgenerator/core/clientlocation/subclient/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-location-move-to-existing-sub-client/specs/azure/clientgenerator/core/clientlocation/subclient/aio/operations/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-location-move-to-existing-sub-client/specs/azure/clientgenerator/core/clientlocation/subclient/operations/_patch.py b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-location-move-to-existing-sub-client/specs/azure/clientgenerator/core/clientlocation/subclient/operations/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-location-move-to-existing-sub-client/specs/azure/clientgenerator/core/clientlocation/subclient/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-location-move-to-existing-sub-client/specs/azure/clientgenerator/core/clientlocation/subclient/operations/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-location-move-to-new-sub-client/specs/azure/clientgenerator/core/clientlocation/newsubclient/_patch.py b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-location-move-to-new-sub-client/specs/azure/clientgenerator/core/clientlocation/newsubclient/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-location-move-to-new-sub-client/specs/azure/clientgenerator/core/clientlocation/newsubclient/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-location-move-to-new-sub-client/specs/azure/clientgenerator/core/clientlocation/newsubclient/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-location-move-to-new-sub-client/specs/azure/clientgenerator/core/clientlocation/newsubclient/aio/_patch.py b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-location-move-to-new-sub-client/specs/azure/clientgenerator/core/clientlocation/newsubclient/aio/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-location-move-to-new-sub-client/specs/azure/clientgenerator/core/clientlocation/newsubclient/aio/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-location-move-to-new-sub-client/specs/azure/clientgenerator/core/clientlocation/newsubclient/aio/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-location-move-to-new-sub-client/specs/azure/clientgenerator/core/clientlocation/newsubclient/aio/operations/_patch.py b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-location-move-to-new-sub-client/specs/azure/clientgenerator/core/clientlocation/newsubclient/aio/operations/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-location-move-to-new-sub-client/specs/azure/clientgenerator/core/clientlocation/newsubclient/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-location-move-to-new-sub-client/specs/azure/clientgenerator/core/clientlocation/newsubclient/aio/operations/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-location-move-to-new-sub-client/specs/azure/clientgenerator/core/clientlocation/newsubclient/operations/_patch.py b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-location-move-to-new-sub-client/specs/azure/clientgenerator/core/clientlocation/newsubclient/operations/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-location-move-to-new-sub-client/specs/azure/clientgenerator/core/clientlocation/newsubclient/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-location-move-to-new-sub-client/specs/azure/clientgenerator/core/clientlocation/newsubclient/operations/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-location-move-to-root-client/specs/azure/clientgenerator/core/clientlocation/rootclient/_patch.py b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-location-move-to-root-client/specs/azure/clientgenerator/core/clientlocation/rootclient/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-location-move-to-root-client/specs/azure/clientgenerator/core/clientlocation/rootclient/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-location-move-to-root-client/specs/azure/clientgenerator/core/clientlocation/rootclient/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-location-move-to-root-client/specs/azure/clientgenerator/core/clientlocation/rootclient/aio/_patch.py b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-location-move-to-root-client/specs/azure/clientgenerator/core/clientlocation/rootclient/aio/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-location-move-to-root-client/specs/azure/clientgenerator/core/clientlocation/rootclient/aio/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-location-move-to-root-client/specs/azure/clientgenerator/core/clientlocation/rootclient/aio/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-location-move-to-root-client/specs/azure/clientgenerator/core/clientlocation/rootclient/aio/operations/_patch.py b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-location-move-to-root-client/specs/azure/clientgenerator/core/clientlocation/rootclient/aio/operations/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-location-move-to-root-client/specs/azure/clientgenerator/core/clientlocation/rootclient/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-location-move-to-root-client/specs/azure/clientgenerator/core/clientlocation/rootclient/aio/operations/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-location-move-to-root-client/specs/azure/clientgenerator/core/clientlocation/rootclient/operations/_patch.py b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-location-move-to-root-client/specs/azure/clientgenerator/core/clientlocation/rootclient/operations/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-location-move-to-root-client/specs/azure/clientgenerator/core/clientlocation/rootclient/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-client-location-move-to-root-client/specs/azure/clientgenerator/core/clientlocation/rootclient/operations/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-deserialize-empty-string-as-null/specs/azure/clientgenerator/core/emptystring/_operations/_patch.py b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-deserialize-empty-string-as-null/specs/azure/clientgenerator/core/emptystring/_operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-deserialize-empty-string-as-null/specs/azure/clientgenerator/core/emptystring/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-deserialize-empty-string-as-null/specs/azure/clientgenerator/core/emptystring/_operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-deserialize-empty-string-as-null/specs/azure/clientgenerator/core/emptystring/_patch.py b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-deserialize-empty-string-as-null/specs/azure/clientgenerator/core/emptystring/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-deserialize-empty-string-as-null/specs/azure/clientgenerator/core/emptystring/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-deserialize-empty-string-as-null/specs/azure/clientgenerator/core/emptystring/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-deserialize-empty-string-as-null/specs/azure/clientgenerator/core/emptystring/aio/_operations/_patch.py b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-deserialize-empty-string-as-null/specs/azure/clientgenerator/core/emptystring/aio/_operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-deserialize-empty-string-as-null/specs/azure/clientgenerator/core/emptystring/aio/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-deserialize-empty-string-as-null/specs/azure/clientgenerator/core/emptystring/aio/_operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-deserialize-empty-string-as-null/specs/azure/clientgenerator/core/emptystring/aio/_patch.py b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-deserialize-empty-string-as-null/specs/azure/clientgenerator/core/emptystring/aio/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-deserialize-empty-string-as-null/specs/azure/clientgenerator/core/emptystring/aio/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-deserialize-empty-string-as-null/specs/azure/clientgenerator/core/emptystring/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-deserialize-empty-string-as-null/specs/azure/clientgenerator/core/emptystring/models/_patch.py b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-deserialize-empty-string-as-null/specs/azure/clientgenerator/core/emptystring/models/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-deserialize-empty-string-as-null/specs/azure/clientgenerator/core/emptystring/models/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-deserialize-empty-string-as-null/specs/azure/clientgenerator/core/emptystring/models/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-flatten-property/specs/azure/clientgenerator/core/flattenproperty/_operations/_patch.py b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-flatten-property/specs/azure/clientgenerator/core/flattenproperty/_operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-flatten-property/specs/azure/clientgenerator/core/flattenproperty/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-flatten-property/specs/azure/clientgenerator/core/flattenproperty/_operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-flatten-property/specs/azure/clientgenerator/core/flattenproperty/_patch.py b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-flatten-property/specs/azure/clientgenerator/core/flattenproperty/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-flatten-property/specs/azure/clientgenerator/core/flattenproperty/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-flatten-property/specs/azure/clientgenerator/core/flattenproperty/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-flatten-property/specs/azure/clientgenerator/core/flattenproperty/aio/_operations/_patch.py b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-flatten-property/specs/azure/clientgenerator/core/flattenproperty/aio/_operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-flatten-property/specs/azure/clientgenerator/core/flattenproperty/aio/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-flatten-property/specs/azure/clientgenerator/core/flattenproperty/aio/_operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-flatten-property/specs/azure/clientgenerator/core/flattenproperty/aio/_patch.py b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-flatten-property/specs/azure/clientgenerator/core/flattenproperty/aio/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-flatten-property/specs/azure/clientgenerator/core/flattenproperty/aio/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-flatten-property/specs/azure/clientgenerator/core/flattenproperty/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-flatten-property/specs/azure/clientgenerator/core/flattenproperty/models/_patch.py b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-flatten-property/specs/azure/clientgenerator/core/flattenproperty/models/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-flatten-property/specs/azure/clientgenerator/core/flattenproperty/models/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-flatten-property/specs/azure/clientgenerator/core/flattenproperty/models/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-hierarchy-building/specs/azure/clientgenerator/core/hierarchybuilding/_patch.py b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-hierarchy-building/specs/azure/clientgenerator/core/hierarchybuilding/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-hierarchy-building/specs/azure/clientgenerator/core/hierarchybuilding/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-hierarchy-building/specs/azure/clientgenerator/core/hierarchybuilding/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-hierarchy-building/specs/azure/clientgenerator/core/hierarchybuilding/aio/_patch.py b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-hierarchy-building/specs/azure/clientgenerator/core/hierarchybuilding/aio/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-hierarchy-building/specs/azure/clientgenerator/core/hierarchybuilding/aio/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-hierarchy-building/specs/azure/clientgenerator/core/hierarchybuilding/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-hierarchy-building/specs/azure/clientgenerator/core/hierarchybuilding/aio/operations/_patch.py b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-hierarchy-building/specs/azure/clientgenerator/core/hierarchybuilding/aio/operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-hierarchy-building/specs/azure/clientgenerator/core/hierarchybuilding/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-hierarchy-building/specs/azure/clientgenerator/core/hierarchybuilding/aio/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-hierarchy-building/specs/azure/clientgenerator/core/hierarchybuilding/models/_patch.py b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-hierarchy-building/specs/azure/clientgenerator/core/hierarchybuilding/models/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-hierarchy-building/specs/azure/clientgenerator/core/hierarchybuilding/models/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-hierarchy-building/specs/azure/clientgenerator/core/hierarchybuilding/models/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-hierarchy-building/specs/azure/clientgenerator/core/hierarchybuilding/operations/_patch.py b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-hierarchy-building/specs/azure/clientgenerator/core/hierarchybuilding/operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-hierarchy-building/specs/azure/clientgenerator/core/hierarchybuilding/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-hierarchy-building/specs/azure/clientgenerator/core/hierarchybuilding/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-next-link-verb/specs/azure/clientgenerator/core/nextlinkverb/_operations/_patch.py b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-next-link-verb/specs/azure/clientgenerator/core/nextlinkverb/_operations/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-next-link-verb/specs/azure/clientgenerator/core/nextlinkverb/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-next-link-verb/specs/azure/clientgenerator/core/nextlinkverb/_operations/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-next-link-verb/specs/azure/clientgenerator/core/nextlinkverb/_patch.py b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-next-link-verb/specs/azure/clientgenerator/core/nextlinkverb/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-next-link-verb/specs/azure/clientgenerator/core/nextlinkverb/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-next-link-verb/specs/azure/clientgenerator/core/nextlinkverb/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-next-link-verb/specs/azure/clientgenerator/core/nextlinkverb/aio/_operations/_patch.py b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-next-link-verb/specs/azure/clientgenerator/core/nextlinkverb/aio/_operations/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-next-link-verb/specs/azure/clientgenerator/core/nextlinkverb/aio/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-next-link-verb/specs/azure/clientgenerator/core/nextlinkverb/aio/_operations/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-next-link-verb/specs/azure/clientgenerator/core/nextlinkverb/aio/_patch.py b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-next-link-verb/specs/azure/clientgenerator/core/nextlinkverb/aio/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-next-link-verb/specs/azure/clientgenerator/core/nextlinkverb/aio/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-next-link-verb/specs/azure/clientgenerator/core/nextlinkverb/aio/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-next-link-verb/specs/azure/clientgenerator/core/nextlinkverb/models/_patch.py b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-next-link-verb/specs/azure/clientgenerator/core/nextlinkverb/models/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-next-link-verb/specs/azure/clientgenerator/core/nextlinkverb/models/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-next-link-verb/specs/azure/clientgenerator/core/nextlinkverb/models/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-override/specs/azure/clientgenerator/core/override/_patch.py b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-override/specs/azure/clientgenerator/core/override/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-override/specs/azure/clientgenerator/core/override/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-override/specs/azure/clientgenerator/core/override/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-override/specs/azure/clientgenerator/core/override/aio/_patch.py b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-override/specs/azure/clientgenerator/core/override/aio/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-override/specs/azure/clientgenerator/core/override/aio/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-override/specs/azure/clientgenerator/core/override/aio/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-override/specs/azure/clientgenerator/core/override/aio/operations/_patch.py b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-override/specs/azure/clientgenerator/core/override/aio/operations/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-override/specs/azure/clientgenerator/core/override/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-override/specs/azure/clientgenerator/core/override/aio/operations/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-override/specs/azure/clientgenerator/core/override/models/_patch.py b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-override/specs/azure/clientgenerator/core/override/models/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-override/specs/azure/clientgenerator/core/override/models/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-override/specs/azure/clientgenerator/core/override/models/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-override/specs/azure/clientgenerator/core/override/operations/_patch.py b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-override/specs/azure/clientgenerator/core/override/operations/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-override/specs/azure/clientgenerator/core/override/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-override/specs/azure/clientgenerator/core/override/operations/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-usage/specs/azure/clientgenerator/core/usage/_patch.py b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-usage/specs/azure/clientgenerator/core/usage/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-usage/specs/azure/clientgenerator/core/usage/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-usage/specs/azure/clientgenerator/core/usage/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-usage/specs/azure/clientgenerator/core/usage/aio/_patch.py b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-usage/specs/azure/clientgenerator/core/usage/aio/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-usage/specs/azure/clientgenerator/core/usage/aio/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-usage/specs/azure/clientgenerator/core/usage/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-usage/specs/azure/clientgenerator/core/usage/aio/operations/_patch.py b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-usage/specs/azure/clientgenerator/core/usage/aio/operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-usage/specs/azure/clientgenerator/core/usage/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-usage/specs/azure/clientgenerator/core/usage/aio/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-usage/specs/azure/clientgenerator/core/usage/models/_patch.py b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-usage/specs/azure/clientgenerator/core/usage/models/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-usage/specs/azure/clientgenerator/core/usage/models/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-usage/specs/azure/clientgenerator/core/usage/models/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-usage/specs/azure/clientgenerator/core/usage/operations/_patch.py b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-usage/specs/azure/clientgenerator/core/usage/operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/azure-client-generator-core-usage/specs/azure/clientgenerator/core/usage/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-client-generator-core-usage/specs/azure/clientgenerator/core/usage/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-core-basic/specs/azure/core/basic/_operations/_patch.py b/packages/typespec-python/tests/generated/azure/azure-core-basic/specs/azure/core/basic/_operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/azure-core-basic/specs/azure/core/basic/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-core-basic/specs/azure/core/basic/_operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-core-basic/specs/azure/core/basic/_patch.py b/packages/typespec-python/tests/generated/azure/azure-core-basic/specs/azure/core/basic/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/azure-core-basic/specs/azure/core/basic/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-core-basic/specs/azure/core/basic/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-core-basic/specs/azure/core/basic/aio/_operations/_patch.py b/packages/typespec-python/tests/generated/azure/azure-core-basic/specs/azure/core/basic/aio/_operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/azure-core-basic/specs/azure/core/basic/aio/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-core-basic/specs/azure/core/basic/aio/_operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-core-basic/specs/azure/core/basic/aio/_patch.py b/packages/typespec-python/tests/generated/azure/azure-core-basic/specs/azure/core/basic/aio/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/azure-core-basic/specs/azure/core/basic/aio/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-core-basic/specs/azure/core/basic/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-core-basic/specs/azure/core/basic/models/_patch.py b/packages/typespec-python/tests/generated/azure/azure-core-basic/specs/azure/core/basic/models/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/azure-core-basic/specs/azure/core/basic/models/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-core-basic/specs/azure/core/basic/models/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-core-lro-rpc/specs/azure/core/lro/rpc/_operations/_patch.py b/packages/typespec-python/tests/generated/azure/azure-core-lro-rpc/specs/azure/core/lro/rpc/_operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/azure-core-lro-rpc/specs/azure/core/lro/rpc/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-core-lro-rpc/specs/azure/core/lro/rpc/_operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-core-lro-rpc/specs/azure/core/lro/rpc/_patch.py b/packages/typespec-python/tests/generated/azure/azure-core-lro-rpc/specs/azure/core/lro/rpc/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/azure-core-lro-rpc/specs/azure/core/lro/rpc/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-core-lro-rpc/specs/azure/core/lro/rpc/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-core-lro-rpc/specs/azure/core/lro/rpc/aio/_operations/_patch.py b/packages/typespec-python/tests/generated/azure/azure-core-lro-rpc/specs/azure/core/lro/rpc/aio/_operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/azure-core-lro-rpc/specs/azure/core/lro/rpc/aio/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-core-lro-rpc/specs/azure/core/lro/rpc/aio/_operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-core-lro-rpc/specs/azure/core/lro/rpc/aio/_patch.py b/packages/typespec-python/tests/generated/azure/azure-core-lro-rpc/specs/azure/core/lro/rpc/aio/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/azure-core-lro-rpc/specs/azure/core/lro/rpc/aio/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-core-lro-rpc/specs/azure/core/lro/rpc/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-core-lro-rpc/specs/azure/core/lro/rpc/models/_patch.py b/packages/typespec-python/tests/generated/azure/azure-core-lro-rpc/specs/azure/core/lro/rpc/models/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/azure-core-lro-rpc/specs/azure/core/lro/rpc/models/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-core-lro-rpc/specs/azure/core/lro/rpc/models/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-core-lro-standard/specs/azure/core/lro/standard/_operations/_patch.py b/packages/typespec-python/tests/generated/azure/azure-core-lro-standard/specs/azure/core/lro/standard/_operations/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/azure-core-lro-standard/specs/azure/core/lro/standard/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-core-lro-standard/specs/azure/core/lro/standard/_operations/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-core-lro-standard/specs/azure/core/lro/standard/_patch.py b/packages/typespec-python/tests/generated/azure/azure-core-lro-standard/specs/azure/core/lro/standard/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/azure-core-lro-standard/specs/azure/core/lro/standard/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-core-lro-standard/specs/azure/core/lro/standard/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-core-lro-standard/specs/azure/core/lro/standard/aio/_operations/_patch.py b/packages/typespec-python/tests/generated/azure/azure-core-lro-standard/specs/azure/core/lro/standard/aio/_operations/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/azure-core-lro-standard/specs/azure/core/lro/standard/aio/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-core-lro-standard/specs/azure/core/lro/standard/aio/_operations/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-core-lro-standard/specs/azure/core/lro/standard/aio/_patch.py b/packages/typespec-python/tests/generated/azure/azure-core-lro-standard/specs/azure/core/lro/standard/aio/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/azure-core-lro-standard/specs/azure/core/lro/standard/aio/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-core-lro-standard/specs/azure/core/lro/standard/aio/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-core-lro-standard/specs/azure/core/lro/standard/models/_patch.py b/packages/typespec-python/tests/generated/azure/azure-core-lro-standard/specs/azure/core/lro/standard/models/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/azure-core-lro-standard/specs/azure/core/lro/standard/models/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-core-lro-standard/specs/azure/core/lro/standard/models/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-core-model/specs/azure/core/model/_patch.py b/packages/typespec-python/tests/generated/azure/azure-core-model/specs/azure/core/model/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/azure-core-model/specs/azure/core/model/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-core-model/specs/azure/core/model/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-core-model/specs/azure/core/model/aio/_patch.py b/packages/typespec-python/tests/generated/azure/azure-core-model/specs/azure/core/model/aio/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/azure-core-model/specs/azure/core/model/aio/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-core-model/specs/azure/core/model/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-core-model/specs/azure/core/model/aio/operations/_patch.py b/packages/typespec-python/tests/generated/azure/azure-core-model/specs/azure/core/model/aio/operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/azure-core-model/specs/azure/core/model/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-core-model/specs/azure/core/model/aio/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-core-model/specs/azure/core/model/models/_patch.py b/packages/typespec-python/tests/generated/azure/azure-core-model/specs/azure/core/model/models/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/azure-core-model/specs/azure/core/model/models/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-core-model/specs/azure/core/model/models/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-core-model/specs/azure/core/model/operations/_patch.py b/packages/typespec-python/tests/generated/azure/azure-core-model/specs/azure/core/model/operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/azure-core-model/specs/azure/core/model/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-core-model/specs/azure/core/model/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-core-page/specs/azure/core/page/_patch.py b/packages/typespec-python/tests/generated/azure/azure-core-page/specs/azure/core/page/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/azure-core-page/specs/azure/core/page/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-core-page/specs/azure/core/page/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-core-page/specs/azure/core/page/aio/_patch.py b/packages/typespec-python/tests/generated/azure/azure-core-page/specs/azure/core/page/aio/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/azure-core-page/specs/azure/core/page/aio/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-core-page/specs/azure/core/page/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-core-page/specs/azure/core/page/aio/operations/_patch.py b/packages/typespec-python/tests/generated/azure/azure-core-page/specs/azure/core/page/aio/operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/azure-core-page/specs/azure/core/page/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-core-page/specs/azure/core/page/aio/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-core-page/specs/azure/core/page/models/_patch.py b/packages/typespec-python/tests/generated/azure/azure-core-page/specs/azure/core/page/models/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/azure-core-page/specs/azure/core/page/models/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-core-page/specs/azure/core/page/models/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-core-page/specs/azure/core/page/operations/_patch.py b/packages/typespec-python/tests/generated/azure/azure-core-page/specs/azure/core/page/operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/azure-core-page/specs/azure/core/page/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-core-page/specs/azure/core/page/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-core-scalar/specs/azure/core/scalar/_patch.py b/packages/typespec-python/tests/generated/azure/azure-core-scalar/specs/azure/core/scalar/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/azure-core-scalar/specs/azure/core/scalar/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-core-scalar/specs/azure/core/scalar/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-core-scalar/specs/azure/core/scalar/aio/_patch.py b/packages/typespec-python/tests/generated/azure/azure-core-scalar/specs/azure/core/scalar/aio/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/azure-core-scalar/specs/azure/core/scalar/aio/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-core-scalar/specs/azure/core/scalar/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-core-scalar/specs/azure/core/scalar/aio/operations/_patch.py b/packages/typespec-python/tests/generated/azure/azure-core-scalar/specs/azure/core/scalar/aio/operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/azure-core-scalar/specs/azure/core/scalar/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-core-scalar/specs/azure/core/scalar/aio/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-core-scalar/specs/azure/core/scalar/models/_patch.py b/packages/typespec-python/tests/generated/azure/azure-core-scalar/specs/azure/core/scalar/models/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/azure-core-scalar/specs/azure/core/scalar/models/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-core-scalar/specs/azure/core/scalar/models/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-core-scalar/specs/azure/core/scalar/operations/_patch.py b/packages/typespec-python/tests/generated/azure/azure-core-scalar/specs/azure/core/scalar/operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/azure-core-scalar/specs/azure/core/scalar/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-core-scalar/specs/azure/core/scalar/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-core-traits/specs/azure/core/traits/_operations/_patch.py b/packages/typespec-python/tests/generated/azure/azure-core-traits/specs/azure/core/traits/_operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/azure-core-traits/specs/azure/core/traits/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-core-traits/specs/azure/core/traits/_operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-core-traits/specs/azure/core/traits/_patch.py b/packages/typespec-python/tests/generated/azure/azure-core-traits/specs/azure/core/traits/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/azure-core-traits/specs/azure/core/traits/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-core-traits/specs/azure/core/traits/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-core-traits/specs/azure/core/traits/aio/_operations/_patch.py b/packages/typespec-python/tests/generated/azure/azure-core-traits/specs/azure/core/traits/aio/_operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/azure-core-traits/specs/azure/core/traits/aio/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-core-traits/specs/azure/core/traits/aio/_operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-core-traits/specs/azure/core/traits/aio/_patch.py b/packages/typespec-python/tests/generated/azure/azure-core-traits/specs/azure/core/traits/aio/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/azure-core-traits/specs/azure/core/traits/aio/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-core-traits/specs/azure/core/traits/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-core-traits/specs/azure/core/traits/models/_patch.py b/packages/typespec-python/tests/generated/azure/azure-core-traits/specs/azure/core/traits/models/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/azure-core-traits/specs/azure/core/traits/models/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-core-traits/specs/azure/core/traits/models/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-encode-duration/specs/azure/encode/duration/_operations/_patch.py b/packages/typespec-python/tests/generated/azure/azure-encode-duration/specs/azure/encode/duration/_operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/azure-encode-duration/specs/azure/encode/duration/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-encode-duration/specs/azure/encode/duration/_operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-encode-duration/specs/azure/encode/duration/_patch.py b/packages/typespec-python/tests/generated/azure/azure-encode-duration/specs/azure/encode/duration/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/azure-encode-duration/specs/azure/encode/duration/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-encode-duration/specs/azure/encode/duration/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-encode-duration/specs/azure/encode/duration/aio/_operations/_patch.py b/packages/typespec-python/tests/generated/azure/azure-encode-duration/specs/azure/encode/duration/aio/_operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/azure-encode-duration/specs/azure/encode/duration/aio/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-encode-duration/specs/azure/encode/duration/aio/_operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-encode-duration/specs/azure/encode/duration/aio/_patch.py b/packages/typespec-python/tests/generated/azure/azure-encode-duration/specs/azure/encode/duration/aio/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/azure-encode-duration/specs/azure/encode/duration/aio/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-encode-duration/specs/azure/encode/duration/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-encode-duration/specs/azure/encode/duration/models/_patch.py b/packages/typespec-python/tests/generated/azure/azure-encode-duration/specs/azure/encode/duration/models/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/azure-encode-duration/specs/azure/encode/duration/models/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-encode-duration/specs/azure/encode/duration/models/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-example-basic/specs/azure/example/basic/_operations/_patch.py b/packages/typespec-python/tests/generated/azure/azure-example-basic/specs/azure/example/basic/_operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/azure-example-basic/specs/azure/example/basic/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-example-basic/specs/azure/example/basic/_operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-example-basic/specs/azure/example/basic/_patch.py b/packages/typespec-python/tests/generated/azure/azure-example-basic/specs/azure/example/basic/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/azure-example-basic/specs/azure/example/basic/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-example-basic/specs/azure/example/basic/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-example-basic/specs/azure/example/basic/aio/_operations/_patch.py b/packages/typespec-python/tests/generated/azure/azure-example-basic/specs/azure/example/basic/aio/_operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/azure-example-basic/specs/azure/example/basic/aio/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-example-basic/specs/azure/example/basic/aio/_operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-example-basic/specs/azure/example/basic/aio/_patch.py b/packages/typespec-python/tests/generated/azure/azure-example-basic/specs/azure/example/basic/aio/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/azure-example-basic/specs/azure/example/basic/aio/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-example-basic/specs/azure/example/basic/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-example-basic/specs/azure/example/basic/models/_patch.py b/packages/typespec-python/tests/generated/azure/azure-example-basic/specs/azure/example/basic/models/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/azure-example-basic/specs/azure/example/basic/models/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-example-basic/specs/azure/example/basic/models/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-payload-pageable/specs/azure/payload/pageable/_operations/_patch.py b/packages/typespec-python/tests/generated/azure/azure-payload-pageable/specs/azure/payload/pageable/_operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/azure-payload-pageable/specs/azure/payload/pageable/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-payload-pageable/specs/azure/payload/pageable/_operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-payload-pageable/specs/azure/payload/pageable/_patch.py b/packages/typespec-python/tests/generated/azure/azure-payload-pageable/specs/azure/payload/pageable/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/azure-payload-pageable/specs/azure/payload/pageable/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-payload-pageable/specs/azure/payload/pageable/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-payload-pageable/specs/azure/payload/pageable/aio/_operations/_patch.py b/packages/typespec-python/tests/generated/azure/azure-payload-pageable/specs/azure/payload/pageable/aio/_operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/azure-payload-pageable/specs/azure/payload/pageable/aio/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-payload-pageable/specs/azure/payload/pageable/aio/_operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-payload-pageable/specs/azure/payload/pageable/aio/_patch.py b/packages/typespec-python/tests/generated/azure/azure-payload-pageable/specs/azure/payload/pageable/aio/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/azure-payload-pageable/specs/azure/payload/pageable/aio/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-payload-pageable/specs/azure/payload/pageable/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-payload-pageable/specs/azure/payload/pageable/models/_patch.py b/packages/typespec-python/tests/generated/azure/azure-payload-pageable/specs/azure/payload/pageable/models/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/azure-payload-pageable/specs/azure/payload/pageable/models/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-payload-pageable/specs/azure/payload/pageable/models/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-resource-manager-common-properties/azure/resourcemanager/commonproperties/_patch.py b/packages/typespec-python/tests/generated/azure/azure-resource-manager-common-properties/azure/resourcemanager/commonproperties/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/azure-resource-manager-common-properties/azure/resourcemanager/commonproperties/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-resource-manager-common-properties/azure/resourcemanager/commonproperties/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-resource-manager-common-properties/azure/resourcemanager/commonproperties/aio/_patch.py b/packages/typespec-python/tests/generated/azure/azure-resource-manager-common-properties/azure/resourcemanager/commonproperties/aio/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/azure-resource-manager-common-properties/azure/resourcemanager/commonproperties/aio/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-resource-manager-common-properties/azure/resourcemanager/commonproperties/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-resource-manager-common-properties/azure/resourcemanager/commonproperties/aio/operations/_patch.py b/packages/typespec-python/tests/generated/azure/azure-resource-manager-common-properties/azure/resourcemanager/commonproperties/aio/operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/azure-resource-manager-common-properties/azure/resourcemanager/commonproperties/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-resource-manager-common-properties/azure/resourcemanager/commonproperties/aio/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-resource-manager-common-properties/azure/resourcemanager/commonproperties/models/_patch.py b/packages/typespec-python/tests/generated/azure/azure-resource-manager-common-properties/azure/resourcemanager/commonproperties/models/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/azure-resource-manager-common-properties/azure/resourcemanager/commonproperties/models/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-resource-manager-common-properties/azure/resourcemanager/commonproperties/models/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-resource-manager-common-properties/azure/resourcemanager/commonproperties/operations/_patch.py b/packages/typespec-python/tests/generated/azure/azure-resource-manager-common-properties/azure/resourcemanager/commonproperties/operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/azure-resource-manager-common-properties/azure/resourcemanager/commonproperties/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-resource-manager-common-properties/azure/resourcemanager/commonproperties/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-resource-manager-large-header/azure/resourcemanager/largeheader/_patch.py b/packages/typespec-python/tests/generated/azure/azure-resource-manager-large-header/azure/resourcemanager/largeheader/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/azure-resource-manager-large-header/azure/resourcemanager/largeheader/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-resource-manager-large-header/azure/resourcemanager/largeheader/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-resource-manager-large-header/azure/resourcemanager/largeheader/aio/_patch.py b/packages/typespec-python/tests/generated/azure/azure-resource-manager-large-header/azure/resourcemanager/largeheader/aio/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/azure-resource-manager-large-header/azure/resourcemanager/largeheader/aio/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-resource-manager-large-header/azure/resourcemanager/largeheader/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-resource-manager-large-header/azure/resourcemanager/largeheader/aio/operations/_patch.py b/packages/typespec-python/tests/generated/azure/azure-resource-manager-large-header/azure/resourcemanager/largeheader/aio/operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/azure-resource-manager-large-header/azure/resourcemanager/largeheader/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-resource-manager-large-header/azure/resourcemanager/largeheader/aio/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-resource-manager-large-header/azure/resourcemanager/largeheader/models/_patch.py b/packages/typespec-python/tests/generated/azure/azure-resource-manager-large-header/azure/resourcemanager/largeheader/models/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/azure-resource-manager-large-header/azure/resourcemanager/largeheader/models/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-resource-manager-large-header/azure/resourcemanager/largeheader/models/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-resource-manager-large-header/azure/resourcemanager/largeheader/operations/_patch.py b/packages/typespec-python/tests/generated/azure/azure-resource-manager-large-header/azure/resourcemanager/largeheader/operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/azure-resource-manager-large-header/azure/resourcemanager/largeheader/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-resource-manager-large-header/azure/resourcemanager/largeheader/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-resource-manager-method-subscription-id/azure/resourcemanager/methodsubscriptionid/_patch.py b/packages/typespec-python/tests/generated/azure/azure-resource-manager-method-subscription-id/azure/resourcemanager/methodsubscriptionid/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/azure-resource-manager-method-subscription-id/azure/resourcemanager/methodsubscriptionid/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-resource-manager-method-subscription-id/azure/resourcemanager/methodsubscriptionid/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-resource-manager-method-subscription-id/azure/resourcemanager/methodsubscriptionid/aio/_patch.py b/packages/typespec-python/tests/generated/azure/azure-resource-manager-method-subscription-id/azure/resourcemanager/methodsubscriptionid/aio/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/azure-resource-manager-method-subscription-id/azure/resourcemanager/methodsubscriptionid/aio/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-resource-manager-method-subscription-id/azure/resourcemanager/methodsubscriptionid/aio/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-resource-manager-method-subscription-id/azure/resourcemanager/methodsubscriptionid/aio/operations/_patch.py b/packages/typespec-python/tests/generated/azure/azure-resource-manager-method-subscription-id/azure/resourcemanager/methodsubscriptionid/aio/operations/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/azure-resource-manager-method-subscription-id/azure/resourcemanager/methodsubscriptionid/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-resource-manager-method-subscription-id/azure/resourcemanager/methodsubscriptionid/aio/operations/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-resource-manager-method-subscription-id/azure/resourcemanager/methodsubscriptionid/models/_patch.py b/packages/typespec-python/tests/generated/azure/azure-resource-manager-method-subscription-id/azure/resourcemanager/methodsubscriptionid/models/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/azure-resource-manager-method-subscription-id/azure/resourcemanager/methodsubscriptionid/models/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-resource-manager-method-subscription-id/azure/resourcemanager/methodsubscriptionid/models/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-resource-manager-method-subscription-id/azure/resourcemanager/methodsubscriptionid/operations/_patch.py b/packages/typespec-python/tests/generated/azure/azure-resource-manager-method-subscription-id/azure/resourcemanager/methodsubscriptionid/operations/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/azure-resource-manager-method-subscription-id/azure/resourcemanager/methodsubscriptionid/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-resource-manager-method-subscription-id/azure/resourcemanager/methodsubscriptionid/operations/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-resource-manager-multi-service-shared-models/azure/resourcemanager/multiservicesharedmodels/combined/_patch.py b/packages/typespec-python/tests/generated/azure/azure-resource-manager-multi-service-shared-models/azure/resourcemanager/multiservicesharedmodels/combined/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/azure-resource-manager-multi-service-shared-models/azure/resourcemanager/multiservicesharedmodels/combined/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-resource-manager-multi-service-shared-models/azure/resourcemanager/multiservicesharedmodels/combined/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-resource-manager-multi-service-shared-models/azure/resourcemanager/multiservicesharedmodels/combined/aio/_patch.py b/packages/typespec-python/tests/generated/azure/azure-resource-manager-multi-service-shared-models/azure/resourcemanager/multiservicesharedmodels/combined/aio/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/azure-resource-manager-multi-service-shared-models/azure/resourcemanager/multiservicesharedmodels/combined/aio/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-resource-manager-multi-service-shared-models/azure/resourcemanager/multiservicesharedmodels/combined/aio/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-resource-manager-multi-service-shared-models/azure/resourcemanager/multiservicesharedmodels/combined/aio/operations/_patch.py b/packages/typespec-python/tests/generated/azure/azure-resource-manager-multi-service-shared-models/azure/resourcemanager/multiservicesharedmodels/combined/aio/operations/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/azure-resource-manager-multi-service-shared-models/azure/resourcemanager/multiservicesharedmodels/combined/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-resource-manager-multi-service-shared-models/azure/resourcemanager/multiservicesharedmodels/combined/aio/operations/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-resource-manager-multi-service-shared-models/azure/resourcemanager/multiservicesharedmodels/combined/models/_patch.py b/packages/typespec-python/tests/generated/azure/azure-resource-manager-multi-service-shared-models/azure/resourcemanager/multiservicesharedmodels/combined/models/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/azure-resource-manager-multi-service-shared-models/azure/resourcemanager/multiservicesharedmodels/combined/models/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-resource-manager-multi-service-shared-models/azure/resourcemanager/multiservicesharedmodels/combined/models/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-resource-manager-multi-service-shared-models/azure/resourcemanager/multiservicesharedmodels/combined/operations/_patch.py b/packages/typespec-python/tests/generated/azure/azure-resource-manager-multi-service-shared-models/azure/resourcemanager/multiservicesharedmodels/combined/operations/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/azure-resource-manager-multi-service-shared-models/azure/resourcemanager/multiservicesharedmodels/combined/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-resource-manager-multi-service-shared-models/azure/resourcemanager/multiservicesharedmodels/combined/operations/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-resource-manager-multi-service/azure/resourcemanager/multiservice/combined/_patch.py b/packages/typespec-python/tests/generated/azure/azure-resource-manager-multi-service/azure/resourcemanager/multiservice/combined/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/azure-resource-manager-multi-service/azure/resourcemanager/multiservice/combined/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-resource-manager-multi-service/azure/resourcemanager/multiservice/combined/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-resource-manager-multi-service/azure/resourcemanager/multiservice/combined/aio/_patch.py b/packages/typespec-python/tests/generated/azure/azure-resource-manager-multi-service/azure/resourcemanager/multiservice/combined/aio/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/azure-resource-manager-multi-service/azure/resourcemanager/multiservice/combined/aio/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-resource-manager-multi-service/azure/resourcemanager/multiservice/combined/aio/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-resource-manager-multi-service/azure/resourcemanager/multiservice/combined/aio/operations/_patch.py b/packages/typespec-python/tests/generated/azure/azure-resource-manager-multi-service/azure/resourcemanager/multiservice/combined/aio/operations/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/azure-resource-manager-multi-service/azure/resourcemanager/multiservice/combined/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-resource-manager-multi-service/azure/resourcemanager/multiservice/combined/aio/operations/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-resource-manager-multi-service/azure/resourcemanager/multiservice/combined/models/_patch.py b/packages/typespec-python/tests/generated/azure/azure-resource-manager-multi-service/azure/resourcemanager/multiservice/combined/models/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/azure-resource-manager-multi-service/azure/resourcemanager/multiservice/combined/models/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-resource-manager-multi-service/azure/resourcemanager/multiservice/combined/models/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-resource-manager-multi-service/azure/resourcemanager/multiservice/combined/operations/_patch.py b/packages/typespec-python/tests/generated/azure/azure-resource-manager-multi-service/azure/resourcemanager/multiservice/combined/operations/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/azure-resource-manager-multi-service/azure/resourcemanager/multiservice/combined/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-resource-manager-multi-service/azure/resourcemanager/multiservice/combined/operations/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-resource-manager-non-resource/azure/resourcemanager/nonresource/_patch.py b/packages/typespec-python/tests/generated/azure/azure-resource-manager-non-resource/azure/resourcemanager/nonresource/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/azure-resource-manager-non-resource/azure/resourcemanager/nonresource/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-resource-manager-non-resource/azure/resourcemanager/nonresource/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-resource-manager-non-resource/azure/resourcemanager/nonresource/aio/_patch.py b/packages/typespec-python/tests/generated/azure/azure-resource-manager-non-resource/azure/resourcemanager/nonresource/aio/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/azure-resource-manager-non-resource/azure/resourcemanager/nonresource/aio/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-resource-manager-non-resource/azure/resourcemanager/nonresource/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-resource-manager-non-resource/azure/resourcemanager/nonresource/aio/operations/_patch.py b/packages/typespec-python/tests/generated/azure/azure-resource-manager-non-resource/azure/resourcemanager/nonresource/aio/operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/azure-resource-manager-non-resource/azure/resourcemanager/nonresource/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-resource-manager-non-resource/azure/resourcemanager/nonresource/aio/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-resource-manager-non-resource/azure/resourcemanager/nonresource/models/_patch.py b/packages/typespec-python/tests/generated/azure/azure-resource-manager-non-resource/azure/resourcemanager/nonresource/models/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/azure-resource-manager-non-resource/azure/resourcemanager/nonresource/models/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-resource-manager-non-resource/azure/resourcemanager/nonresource/models/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-resource-manager-non-resource/azure/resourcemanager/nonresource/operations/_patch.py b/packages/typespec-python/tests/generated/azure/azure-resource-manager-non-resource/azure/resourcemanager/nonresource/operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/azure-resource-manager-non-resource/azure/resourcemanager/nonresource/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-resource-manager-non-resource/azure/resourcemanager/nonresource/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-resource-manager-operation-templates/azure/resourcemanager/operationtemplates/_patch.py b/packages/typespec-python/tests/generated/azure/azure-resource-manager-operation-templates/azure/resourcemanager/operationtemplates/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/azure-resource-manager-operation-templates/azure/resourcemanager/operationtemplates/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-resource-manager-operation-templates/azure/resourcemanager/operationtemplates/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-resource-manager-operation-templates/azure/resourcemanager/operationtemplates/aio/_patch.py b/packages/typespec-python/tests/generated/azure/azure-resource-manager-operation-templates/azure/resourcemanager/operationtemplates/aio/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/azure-resource-manager-operation-templates/azure/resourcemanager/operationtemplates/aio/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-resource-manager-operation-templates/azure/resourcemanager/operationtemplates/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-resource-manager-operation-templates/azure/resourcemanager/operationtemplates/aio/operations/_patch.py b/packages/typespec-python/tests/generated/azure/azure-resource-manager-operation-templates/azure/resourcemanager/operationtemplates/aio/operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/azure-resource-manager-operation-templates/azure/resourcemanager/operationtemplates/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-resource-manager-operation-templates/azure/resourcemanager/operationtemplates/aio/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-resource-manager-operation-templates/azure/resourcemanager/operationtemplates/models/_patch.py b/packages/typespec-python/tests/generated/azure/azure-resource-manager-operation-templates/azure/resourcemanager/operationtemplates/models/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/azure-resource-manager-operation-templates/azure/resourcemanager/operationtemplates/models/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-resource-manager-operation-templates/azure/resourcemanager/operationtemplates/models/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-resource-manager-operation-templates/azure/resourcemanager/operationtemplates/operations/_patch.py b/packages/typespec-python/tests/generated/azure/azure-resource-manager-operation-templates/azure/resourcemanager/operationtemplates/operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/azure-resource-manager-operation-templates/azure/resourcemanager/operationtemplates/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-resource-manager-operation-templates/azure/resourcemanager/operationtemplates/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-resource-manager-resources/azure/resourcemanager/resources/_patch.py b/packages/typespec-python/tests/generated/azure/azure-resource-manager-resources/azure/resourcemanager/resources/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/azure-resource-manager-resources/azure/resourcemanager/resources/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-resource-manager-resources/azure/resourcemanager/resources/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-resource-manager-resources/azure/resourcemanager/resources/aio/_patch.py b/packages/typespec-python/tests/generated/azure/azure-resource-manager-resources/azure/resourcemanager/resources/aio/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/azure-resource-manager-resources/azure/resourcemanager/resources/aio/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-resource-manager-resources/azure/resourcemanager/resources/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-resource-manager-resources/azure/resourcemanager/resources/aio/operations/_patch.py b/packages/typespec-python/tests/generated/azure/azure-resource-manager-resources/azure/resourcemanager/resources/aio/operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/azure-resource-manager-resources/azure/resourcemanager/resources/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-resource-manager-resources/azure/resourcemanager/resources/aio/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-resource-manager-resources/azure/resourcemanager/resources/models/_patch.py b/packages/typespec-python/tests/generated/azure/azure-resource-manager-resources/azure/resourcemanager/resources/models/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/azure-resource-manager-resources/azure/resourcemanager/resources/models/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-resource-manager-resources/azure/resourcemanager/resources/models/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-resource-manager-resources/azure/resourcemanager/resources/operations/_patch.py b/packages/typespec-python/tests/generated/azure/azure-resource-manager-resources/azure/resourcemanager/resources/operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/azure-resource-manager-resources/azure/resourcemanager/resources/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-resource-manager-resources/azure/resourcemanager/resources/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-special-headers-client-request-id/azure/specialheaders/xmsclientrequestid/_operations/_patch.py b/packages/typespec-python/tests/generated/azure/azure-special-headers-client-request-id/azure/specialheaders/xmsclientrequestid/_operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/azure-special-headers-client-request-id/azure/specialheaders/xmsclientrequestid/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-special-headers-client-request-id/azure/specialheaders/xmsclientrequestid/_operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-special-headers-client-request-id/azure/specialheaders/xmsclientrequestid/_patch.py b/packages/typespec-python/tests/generated/azure/azure-special-headers-client-request-id/azure/specialheaders/xmsclientrequestid/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/azure-special-headers-client-request-id/azure/specialheaders/xmsclientrequestid/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-special-headers-client-request-id/azure/specialheaders/xmsclientrequestid/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-special-headers-client-request-id/azure/specialheaders/xmsclientrequestid/aio/_operations/_patch.py b/packages/typespec-python/tests/generated/azure/azure-special-headers-client-request-id/azure/specialheaders/xmsclientrequestid/aio/_operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/azure-special-headers-client-request-id/azure/specialheaders/xmsclientrequestid/aio/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-special-headers-client-request-id/azure/specialheaders/xmsclientrequestid/aio/_operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-special-headers-client-request-id/azure/specialheaders/xmsclientrequestid/aio/_patch.py b/packages/typespec-python/tests/generated/azure/azure-special-headers-client-request-id/azure/specialheaders/xmsclientrequestid/aio/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/azure-special-headers-client-request-id/azure/specialheaders/xmsclientrequestid/aio/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-special-headers-client-request-id/azure/specialheaders/xmsclientrequestid/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-versioning-previewversion/specs/azure/versioning/previewversion/_operations/_patch.py b/packages/typespec-python/tests/generated/azure/azure-versioning-previewversion/specs/azure/versioning/previewversion/_operations/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/azure-versioning-previewversion/specs/azure/versioning/previewversion/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-versioning-previewversion/specs/azure/versioning/previewversion/_operations/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-versioning-previewversion/specs/azure/versioning/previewversion/_patch.py b/packages/typespec-python/tests/generated/azure/azure-versioning-previewversion/specs/azure/versioning/previewversion/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/azure-versioning-previewversion/specs/azure/versioning/previewversion/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-versioning-previewversion/specs/azure/versioning/previewversion/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-versioning-previewversion/specs/azure/versioning/previewversion/aio/_operations/_patch.py b/packages/typespec-python/tests/generated/azure/azure-versioning-previewversion/specs/azure/versioning/previewversion/aio/_operations/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/azure-versioning-previewversion/specs/azure/versioning/previewversion/aio/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-versioning-previewversion/specs/azure/versioning/previewversion/aio/_operations/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-versioning-previewversion/specs/azure/versioning/previewversion/aio/_patch.py b/packages/typespec-python/tests/generated/azure/azure-versioning-previewversion/specs/azure/versioning/previewversion/aio/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/azure-versioning-previewversion/specs/azure/versioning/previewversion/aio/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-versioning-previewversion/specs/azure/versioning/previewversion/aio/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/azure-versioning-previewversion/specs/azure/versioning/previewversion/models/_patch.py b/packages/typespec-python/tests/generated/azure/azure-versioning-previewversion/specs/azure/versioning/previewversion/models/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/azure-versioning-previewversion/specs/azure/versioning/previewversion/models/_patch.py +++ b/packages/typespec-python/tests/generated/azure/azure-versioning-previewversion/specs/azure/versioning/previewversion/models/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/client-namespace/client/clientnamespace/_operations/_patch.py b/packages/typespec-python/tests/generated/azure/client-namespace/client/clientnamespace/_operations/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/client-namespace/client/clientnamespace/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/client-namespace/client/clientnamespace/_operations/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/client-namespace/client/clientnamespace/_patch.py b/packages/typespec-python/tests/generated/azure/client-namespace/client/clientnamespace/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/client-namespace/client/clientnamespace/_patch.py +++ b/packages/typespec-python/tests/generated/azure/client-namespace/client/clientnamespace/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/client-namespace/client/clientnamespace/aio/_operations/_patch.py b/packages/typespec-python/tests/generated/azure/client-namespace/client/clientnamespace/aio/_operations/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/client-namespace/client/clientnamespace/aio/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/client-namespace/client/clientnamespace/aio/_operations/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/client-namespace/client/clientnamespace/aio/_patch.py b/packages/typespec-python/tests/generated/azure/client-namespace/client/clientnamespace/aio/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/client-namespace/client/clientnamespace/aio/_patch.py +++ b/packages/typespec-python/tests/generated/azure/client-namespace/client/clientnamespace/aio/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/client-namespace/client/clientnamespace/first/models/_patch.py b/packages/typespec-python/tests/generated/azure/client-namespace/client/clientnamespace/first/models/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/client-namespace/client/clientnamespace/first/models/_patch.py +++ b/packages/typespec-python/tests/generated/azure/client-namespace/client/clientnamespace/first/models/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/client-namespace/client/clientnamespace/second/_operations/_patch.py b/packages/typespec-python/tests/generated/azure/client-namespace/client/clientnamespace/second/_operations/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/client-namespace/client/clientnamespace/second/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/client-namespace/client/clientnamespace/second/_operations/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/client-namespace/client/clientnamespace/second/_patch.py b/packages/typespec-python/tests/generated/azure/client-namespace/client/clientnamespace/second/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/client-namespace/client/clientnamespace/second/_patch.py +++ b/packages/typespec-python/tests/generated/azure/client-namespace/client/clientnamespace/second/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/client-namespace/client/clientnamespace/second/aio/_operations/_patch.py b/packages/typespec-python/tests/generated/azure/client-namespace/client/clientnamespace/second/aio/_operations/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/client-namespace/client/clientnamespace/second/aio/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/client-namespace/client/clientnamespace/second/aio/_operations/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/client-namespace/client/clientnamespace/second/aio/_patch.py b/packages/typespec-python/tests/generated/azure/client-namespace/client/clientnamespace/second/aio/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/client-namespace/client/clientnamespace/second/aio/_patch.py +++ b/packages/typespec-python/tests/generated/azure/client-namespace/client/clientnamespace/second/aio/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/client-namespace/client/clientnamespace/second/models/_patch.py b/packages/typespec-python/tests/generated/azure/client-namespace/client/clientnamespace/second/models/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/client-namespace/client/clientnamespace/second/models/_patch.py +++ b/packages/typespec-python/tests/generated/azure/client-namespace/client/clientnamespace/second/models/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/client-namespace/client/clientnamespace/second/sub/models/_patch.py b/packages/typespec-python/tests/generated/azure/client-namespace/client/clientnamespace/second/sub/models/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/client-namespace/client/clientnamespace/second/sub/models/_patch.py +++ b/packages/typespec-python/tests/generated/azure/client-namespace/client/clientnamespace/second/sub/models/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/client-naming-enum-conflict/client/naming/enumconflict/_patch.py b/packages/typespec-python/tests/generated/azure/client-naming-enum-conflict/client/naming/enumconflict/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/client-naming-enum-conflict/client/naming/enumconflict/_patch.py +++ b/packages/typespec-python/tests/generated/azure/client-naming-enum-conflict/client/naming/enumconflict/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/client-naming-enum-conflict/client/naming/enumconflict/aio/_patch.py b/packages/typespec-python/tests/generated/azure/client-naming-enum-conflict/client/naming/enumconflict/aio/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/client-naming-enum-conflict/client/naming/enumconflict/aio/_patch.py +++ b/packages/typespec-python/tests/generated/azure/client-naming-enum-conflict/client/naming/enumconflict/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/client-naming-enum-conflict/client/naming/enumconflict/aio/operations/_patch.py b/packages/typespec-python/tests/generated/azure/client-naming-enum-conflict/client/naming/enumconflict/aio/operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/client-naming-enum-conflict/client/naming/enumconflict/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/client-naming-enum-conflict/client/naming/enumconflict/aio/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/client-naming-enum-conflict/client/naming/enumconflict/firstnamespace/models/_patch.py b/packages/typespec-python/tests/generated/azure/client-naming-enum-conflict/client/naming/enumconflict/firstnamespace/models/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/client-naming-enum-conflict/client/naming/enumconflict/firstnamespace/models/_patch.py +++ b/packages/typespec-python/tests/generated/azure/client-naming-enum-conflict/client/naming/enumconflict/firstnamespace/models/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/client-naming-enum-conflict/client/naming/enumconflict/operations/_patch.py b/packages/typespec-python/tests/generated/azure/client-naming-enum-conflict/client/naming/enumconflict/operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/client-naming-enum-conflict/client/naming/enumconflict/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/client-naming-enum-conflict/client/naming/enumconflict/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/client-naming-enum-conflict/client/naming/enumconflict/secondnamespace/models/_patch.py b/packages/typespec-python/tests/generated/azure/client-naming-enum-conflict/client/naming/enumconflict/secondnamespace/models/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/client-naming-enum-conflict/client/naming/enumconflict/secondnamespace/models/_patch.py +++ b/packages/typespec-python/tests/generated/azure/client-naming-enum-conflict/client/naming/enumconflict/secondnamespace/models/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/client-naming/client/naming/main/_patch.py b/packages/typespec-python/tests/generated/azure/client-naming/client/naming/main/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/client-naming/client/naming/main/_patch.py +++ b/packages/typespec-python/tests/generated/azure/client-naming/client/naming/main/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/client-naming/client/naming/main/aio/_patch.py b/packages/typespec-python/tests/generated/azure/client-naming/client/naming/main/aio/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/client-naming/client/naming/main/aio/_patch.py +++ b/packages/typespec-python/tests/generated/azure/client-naming/client/naming/main/aio/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/client-naming/client/naming/main/aio/operations/_patch.py b/packages/typespec-python/tests/generated/azure/client-naming/client/naming/main/aio/operations/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/client-naming/client/naming/main/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/client-naming/client/naming/main/aio/operations/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/client-naming/client/naming/main/models/_patch.py b/packages/typespec-python/tests/generated/azure/client-naming/client/naming/main/models/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/client-naming/client/naming/main/models/_patch.py +++ b/packages/typespec-python/tests/generated/azure/client-naming/client/naming/main/models/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/client-naming/client/naming/main/operations/_patch.py b/packages/typespec-python/tests/generated/azure/client-naming/client/naming/main/operations/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/client-naming/client/naming/main/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/client-naming/client/naming/main/operations/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/client-overload/client/overload/_operations/_patch.py b/packages/typespec-python/tests/generated/azure/client-overload/client/overload/_operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/client-overload/client/overload/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/client-overload/client/overload/_operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/client-overload/client/overload/_patch.py b/packages/typespec-python/tests/generated/azure/client-overload/client/overload/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/client-overload/client/overload/_patch.py +++ b/packages/typespec-python/tests/generated/azure/client-overload/client/overload/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/client-overload/client/overload/aio/_operations/_patch.py b/packages/typespec-python/tests/generated/azure/client-overload/client/overload/aio/_operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/client-overload/client/overload/aio/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/client-overload/client/overload/aio/_operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/client-overload/client/overload/aio/_patch.py b/packages/typespec-python/tests/generated/azure/client-overload/client/overload/aio/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/client-overload/client/overload/aio/_patch.py +++ b/packages/typespec-python/tests/generated/azure/client-overload/client/overload/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/client-overload/client/overload/models/_patch.py b/packages/typespec-python/tests/generated/azure/client-overload/client/overload/models/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/client-overload/client/overload/models/_patch.py +++ b/packages/typespec-python/tests/generated/azure/client-overload/client/overload/models/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/client-structure-clientoperationgroup/client/structure/clientoperationgroup/_operations/_patch.py b/packages/typespec-python/tests/generated/azure/client-structure-clientoperationgroup/client/structure/clientoperationgroup/_operations/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/client-structure-clientoperationgroup/client/structure/clientoperationgroup/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/client-structure-clientoperationgroup/client/structure/clientoperationgroup/_operations/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/client-structure-clientoperationgroup/client/structure/clientoperationgroup/_patch.py b/packages/typespec-python/tests/generated/azure/client-structure-clientoperationgroup/client/structure/clientoperationgroup/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/client-structure-clientoperationgroup/client/structure/clientoperationgroup/_patch.py +++ b/packages/typespec-python/tests/generated/azure/client-structure-clientoperationgroup/client/structure/clientoperationgroup/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/client-structure-clientoperationgroup/client/structure/clientoperationgroup/aio/_operations/_patch.py b/packages/typespec-python/tests/generated/azure/client-structure-clientoperationgroup/client/structure/clientoperationgroup/aio/_operations/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/client-structure-clientoperationgroup/client/structure/clientoperationgroup/aio/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/client-structure-clientoperationgroup/client/structure/clientoperationgroup/aio/_operations/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/client-structure-clientoperationgroup/client/structure/clientoperationgroup/aio/_patch.py b/packages/typespec-python/tests/generated/azure/client-structure-clientoperationgroup/client/structure/clientoperationgroup/aio/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/client-structure-clientoperationgroup/client/structure/clientoperationgroup/aio/_patch.py +++ b/packages/typespec-python/tests/generated/azure/client-structure-clientoperationgroup/client/structure/clientoperationgroup/aio/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/client-structure-clientoperationgroup/client/structure/clientoperationgroup/aio/operations/_patch.py b/packages/typespec-python/tests/generated/azure/client-structure-clientoperationgroup/client/structure/clientoperationgroup/aio/operations/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/client-structure-clientoperationgroup/client/structure/clientoperationgroup/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/client-structure-clientoperationgroup/client/structure/clientoperationgroup/aio/operations/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/client-structure-clientoperationgroup/client/structure/clientoperationgroup/models/_patch.py b/packages/typespec-python/tests/generated/azure/client-structure-clientoperationgroup/client/structure/clientoperationgroup/models/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/client-structure-clientoperationgroup/client/structure/clientoperationgroup/models/_patch.py +++ b/packages/typespec-python/tests/generated/azure/client-structure-clientoperationgroup/client/structure/clientoperationgroup/models/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/client-structure-clientoperationgroup/client/structure/clientoperationgroup/operations/_patch.py b/packages/typespec-python/tests/generated/azure/client-structure-clientoperationgroup/client/structure/clientoperationgroup/operations/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/client-structure-clientoperationgroup/client/structure/clientoperationgroup/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/client-structure-clientoperationgroup/client/structure/clientoperationgroup/operations/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/client-structure-default/client/structure/service/_patch.py b/packages/typespec-python/tests/generated/azure/client-structure-default/client/structure/service/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/client-structure-default/client/structure/service/_patch.py +++ b/packages/typespec-python/tests/generated/azure/client-structure-default/client/structure/service/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/client-structure-default/client/structure/service/aio/_patch.py b/packages/typespec-python/tests/generated/azure/client-structure-default/client/structure/service/aio/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/client-structure-default/client/structure/service/aio/_patch.py +++ b/packages/typespec-python/tests/generated/azure/client-structure-default/client/structure/service/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/client-structure-default/client/structure/service/aio/operations/_patch.py b/packages/typespec-python/tests/generated/azure/client-structure-default/client/structure/service/aio/operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/client-structure-default/client/structure/service/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/client-structure-default/client/structure/service/aio/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/client-structure-default/client/structure/service/models/_patch.py b/packages/typespec-python/tests/generated/azure/client-structure-default/client/structure/service/models/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/client-structure-default/client/structure/service/models/_patch.py +++ b/packages/typespec-python/tests/generated/azure/client-structure-default/client/structure/service/models/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/client-structure-default/client/structure/service/operations/_patch.py b/packages/typespec-python/tests/generated/azure/client-structure-default/client/structure/service/operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/client-structure-default/client/structure/service/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/client-structure-default/client/structure/service/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/client-structure-multiclient/client/structure/multiclient/_operations/_patch.py b/packages/typespec-python/tests/generated/azure/client-structure-multiclient/client/structure/multiclient/_operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/client-structure-multiclient/client/structure/multiclient/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/client-structure-multiclient/client/structure/multiclient/_operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/client-structure-multiclient/client/structure/multiclient/_patch.py b/packages/typespec-python/tests/generated/azure/client-structure-multiclient/client/structure/multiclient/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/client-structure-multiclient/client/structure/multiclient/_patch.py +++ b/packages/typespec-python/tests/generated/azure/client-structure-multiclient/client/structure/multiclient/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/client-structure-multiclient/client/structure/multiclient/aio/_operations/_patch.py b/packages/typespec-python/tests/generated/azure/client-structure-multiclient/client/structure/multiclient/aio/_operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/client-structure-multiclient/client/structure/multiclient/aio/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/client-structure-multiclient/client/structure/multiclient/aio/_operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/client-structure-multiclient/client/structure/multiclient/aio/_patch.py b/packages/typespec-python/tests/generated/azure/client-structure-multiclient/client/structure/multiclient/aio/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/client-structure-multiclient/client/structure/multiclient/aio/_patch.py +++ b/packages/typespec-python/tests/generated/azure/client-structure-multiclient/client/structure/multiclient/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/client-structure-multiclient/client/structure/multiclient/models/_patch.py b/packages/typespec-python/tests/generated/azure/client-structure-multiclient/client/structure/multiclient/models/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/client-structure-multiclient/client/structure/multiclient/models/_patch.py +++ b/packages/typespec-python/tests/generated/azure/client-structure-multiclient/client/structure/multiclient/models/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/client-structure-renamedoperation/client/structure/renamedoperation/_operations/_patch.py b/packages/typespec-python/tests/generated/azure/client-structure-renamedoperation/client/structure/renamedoperation/_operations/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/client-structure-renamedoperation/client/structure/renamedoperation/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/client-structure-renamedoperation/client/structure/renamedoperation/_operations/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/client-structure-renamedoperation/client/structure/renamedoperation/_patch.py b/packages/typespec-python/tests/generated/azure/client-structure-renamedoperation/client/structure/renamedoperation/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/client-structure-renamedoperation/client/structure/renamedoperation/_patch.py +++ b/packages/typespec-python/tests/generated/azure/client-structure-renamedoperation/client/structure/renamedoperation/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/client-structure-renamedoperation/client/structure/renamedoperation/aio/_operations/_patch.py b/packages/typespec-python/tests/generated/azure/client-structure-renamedoperation/client/structure/renamedoperation/aio/_operations/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/client-structure-renamedoperation/client/structure/renamedoperation/aio/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/client-structure-renamedoperation/client/structure/renamedoperation/aio/_operations/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/client-structure-renamedoperation/client/structure/renamedoperation/aio/_patch.py b/packages/typespec-python/tests/generated/azure/client-structure-renamedoperation/client/structure/renamedoperation/aio/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/client-structure-renamedoperation/client/structure/renamedoperation/aio/_patch.py +++ b/packages/typespec-python/tests/generated/azure/client-structure-renamedoperation/client/structure/renamedoperation/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/client-structure-renamedoperation/client/structure/renamedoperation/aio/operations/_patch.py b/packages/typespec-python/tests/generated/azure/client-structure-renamedoperation/client/structure/renamedoperation/aio/operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/client-structure-renamedoperation/client/structure/renamedoperation/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/client-structure-renamedoperation/client/structure/renamedoperation/aio/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/client-structure-renamedoperation/client/structure/renamedoperation/models/_patch.py b/packages/typespec-python/tests/generated/azure/client-structure-renamedoperation/client/structure/renamedoperation/models/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/client-structure-renamedoperation/client/structure/renamedoperation/models/_patch.py +++ b/packages/typespec-python/tests/generated/azure/client-structure-renamedoperation/client/structure/renamedoperation/models/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/client-structure-renamedoperation/client/structure/renamedoperation/operations/_patch.py b/packages/typespec-python/tests/generated/azure/client-structure-renamedoperation/client/structure/renamedoperation/operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/client-structure-renamedoperation/client/structure/renamedoperation/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/client-structure-renamedoperation/client/structure/renamedoperation/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/client-structure-twooperationgroup/client/structure/twooperationgroup/_operations/_patch.py b/packages/typespec-python/tests/generated/azure/client-structure-twooperationgroup/client/structure/twooperationgroup/_operations/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/client-structure-twooperationgroup/client/structure/twooperationgroup/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/client-structure-twooperationgroup/client/structure/twooperationgroup/_operations/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/client-structure-twooperationgroup/client/structure/twooperationgroup/_patch.py b/packages/typespec-python/tests/generated/azure/client-structure-twooperationgroup/client/structure/twooperationgroup/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/client-structure-twooperationgroup/client/structure/twooperationgroup/_patch.py +++ b/packages/typespec-python/tests/generated/azure/client-structure-twooperationgroup/client/structure/twooperationgroup/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/client-structure-twooperationgroup/client/structure/twooperationgroup/aio/_operations/_patch.py b/packages/typespec-python/tests/generated/azure/client-structure-twooperationgroup/client/structure/twooperationgroup/aio/_operations/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/client-structure-twooperationgroup/client/structure/twooperationgroup/aio/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/client-structure-twooperationgroup/client/structure/twooperationgroup/aio/_operations/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/client-structure-twooperationgroup/client/structure/twooperationgroup/aio/_patch.py b/packages/typespec-python/tests/generated/azure/client-structure-twooperationgroup/client/structure/twooperationgroup/aio/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/client-structure-twooperationgroup/client/structure/twooperationgroup/aio/_patch.py +++ b/packages/typespec-python/tests/generated/azure/client-structure-twooperationgroup/client/structure/twooperationgroup/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/client-structure-twooperationgroup/client/structure/twooperationgroup/aio/operations/_patch.py b/packages/typespec-python/tests/generated/azure/client-structure-twooperationgroup/client/structure/twooperationgroup/aio/operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/client-structure-twooperationgroup/client/structure/twooperationgroup/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/client-structure-twooperationgroup/client/structure/twooperationgroup/aio/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/client-structure-twooperationgroup/client/structure/twooperationgroup/models/_patch.py b/packages/typespec-python/tests/generated/azure/client-structure-twooperationgroup/client/structure/twooperationgroup/models/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/client-structure-twooperationgroup/client/structure/twooperationgroup/models/_patch.py +++ b/packages/typespec-python/tests/generated/azure/client-structure-twooperationgroup/client/structure/twooperationgroup/models/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/client-structure-twooperationgroup/client/structure/twooperationgroup/operations/_patch.py b/packages/typespec-python/tests/generated/azure/client-structure-twooperationgroup/client/structure/twooperationgroup/operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/client-structure-twooperationgroup/client/structure/twooperationgroup/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/client-structure-twooperationgroup/client/structure/twooperationgroup/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/encode-array/encode/array/_patch.py b/packages/typespec-python/tests/generated/azure/encode-array/encode/array/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/encode-array/encode/array/_patch.py +++ b/packages/typespec-python/tests/generated/azure/encode-array/encode/array/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/encode-array/encode/array/aio/_patch.py b/packages/typespec-python/tests/generated/azure/encode-array/encode/array/aio/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/encode-array/encode/array/aio/_patch.py +++ b/packages/typespec-python/tests/generated/azure/encode-array/encode/array/aio/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/encode-array/encode/array/models/_patch.py b/packages/typespec-python/tests/generated/azure/encode-array/encode/array/models/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/encode-array/encode/array/models/_patch.py +++ b/packages/typespec-python/tests/generated/azure/encode-array/encode/array/models/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/encode-array/encode/array/property/aio/operations/_patch.py b/packages/typespec-python/tests/generated/azure/encode-array/encode/array/property/aio/operations/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/encode-array/encode/array/property/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/encode-array/encode/array/property/aio/operations/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/encode-array/encode/array/property/operations/_patch.py b/packages/typespec-python/tests/generated/azure/encode-array/encode/array/property/operations/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/encode-array/encode/array/property/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/encode-array/encode/array/property/operations/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/encode-bytes/encode/bytes/_patch.py b/packages/typespec-python/tests/generated/azure/encode-bytes/encode/bytes/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/encode-bytes/encode/bytes/_patch.py +++ b/packages/typespec-python/tests/generated/azure/encode-bytes/encode/bytes/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/encode-bytes/encode/bytes/aio/_patch.py b/packages/typespec-python/tests/generated/azure/encode-bytes/encode/bytes/aio/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/encode-bytes/encode/bytes/aio/_patch.py +++ b/packages/typespec-python/tests/generated/azure/encode-bytes/encode/bytes/aio/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/encode-bytes/encode/bytes/header/aio/operations/_patch.py b/packages/typespec-python/tests/generated/azure/encode-bytes/encode/bytes/header/aio/operations/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/encode-bytes/encode/bytes/header/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/encode-bytes/encode/bytes/header/aio/operations/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/encode-bytes/encode/bytes/header/operations/_patch.py b/packages/typespec-python/tests/generated/azure/encode-bytes/encode/bytes/header/operations/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/encode-bytes/encode/bytes/header/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/encode-bytes/encode/bytes/header/operations/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/encode-bytes/encode/bytes/models/_patch.py b/packages/typespec-python/tests/generated/azure/encode-bytes/encode/bytes/models/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/encode-bytes/encode/bytes/models/_patch.py +++ b/packages/typespec-python/tests/generated/azure/encode-bytes/encode/bytes/models/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/encode-bytes/encode/bytes/property/aio/operations/_patch.py b/packages/typespec-python/tests/generated/azure/encode-bytes/encode/bytes/property/aio/operations/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/encode-bytes/encode/bytes/property/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/encode-bytes/encode/bytes/property/aio/operations/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/encode-bytes/encode/bytes/property/operations/_patch.py b/packages/typespec-python/tests/generated/azure/encode-bytes/encode/bytes/property/operations/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/encode-bytes/encode/bytes/property/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/encode-bytes/encode/bytes/property/operations/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/encode-bytes/encode/bytes/query/aio/operations/_patch.py b/packages/typespec-python/tests/generated/azure/encode-bytes/encode/bytes/query/aio/operations/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/encode-bytes/encode/bytes/query/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/encode-bytes/encode/bytes/query/aio/operations/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/encode-bytes/encode/bytes/query/operations/_patch.py b/packages/typespec-python/tests/generated/azure/encode-bytes/encode/bytes/query/operations/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/encode-bytes/encode/bytes/query/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/encode-bytes/encode/bytes/query/operations/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/encode-bytes/encode/bytes/requestbody/aio/operations/_patch.py b/packages/typespec-python/tests/generated/azure/encode-bytes/encode/bytes/requestbody/aio/operations/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/encode-bytes/encode/bytes/requestbody/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/encode-bytes/encode/bytes/requestbody/aio/operations/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/encode-bytes/encode/bytes/requestbody/operations/_patch.py b/packages/typespec-python/tests/generated/azure/encode-bytes/encode/bytes/requestbody/operations/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/encode-bytes/encode/bytes/requestbody/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/encode-bytes/encode/bytes/requestbody/operations/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/encode-bytes/encode/bytes/responsebody/aio/operations/_patch.py b/packages/typespec-python/tests/generated/azure/encode-bytes/encode/bytes/responsebody/aio/operations/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/encode-bytes/encode/bytes/responsebody/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/encode-bytes/encode/bytes/responsebody/aio/operations/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/encode-bytes/encode/bytes/responsebody/operations/_patch.py b/packages/typespec-python/tests/generated/azure/encode-bytes/encode/bytes/responsebody/operations/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/encode-bytes/encode/bytes/responsebody/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/encode-bytes/encode/bytes/responsebody/operations/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/encode-datetime/encode/datetime/_patch.py b/packages/typespec-python/tests/generated/azure/encode-datetime/encode/datetime/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/encode-datetime/encode/datetime/_patch.py +++ b/packages/typespec-python/tests/generated/azure/encode-datetime/encode/datetime/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/encode-datetime/encode/datetime/aio/_patch.py b/packages/typespec-python/tests/generated/azure/encode-datetime/encode/datetime/aio/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/encode-datetime/encode/datetime/aio/_patch.py +++ b/packages/typespec-python/tests/generated/azure/encode-datetime/encode/datetime/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/encode-datetime/encode/datetime/header/aio/operations/_patch.py b/packages/typespec-python/tests/generated/azure/encode-datetime/encode/datetime/header/aio/operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/encode-datetime/encode/datetime/header/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/encode-datetime/encode/datetime/header/aio/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/encode-datetime/encode/datetime/header/operations/_patch.py b/packages/typespec-python/tests/generated/azure/encode-datetime/encode/datetime/header/operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/encode-datetime/encode/datetime/header/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/encode-datetime/encode/datetime/header/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/encode-datetime/encode/datetime/models/_patch.py b/packages/typespec-python/tests/generated/azure/encode-datetime/encode/datetime/models/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/encode-datetime/encode/datetime/models/_patch.py +++ b/packages/typespec-python/tests/generated/azure/encode-datetime/encode/datetime/models/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/encode-datetime/encode/datetime/property/aio/operations/_patch.py b/packages/typespec-python/tests/generated/azure/encode-datetime/encode/datetime/property/aio/operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/encode-datetime/encode/datetime/property/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/encode-datetime/encode/datetime/property/aio/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/encode-datetime/encode/datetime/property/operations/_patch.py b/packages/typespec-python/tests/generated/azure/encode-datetime/encode/datetime/property/operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/encode-datetime/encode/datetime/property/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/encode-datetime/encode/datetime/property/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/encode-datetime/encode/datetime/query/aio/operations/_patch.py b/packages/typespec-python/tests/generated/azure/encode-datetime/encode/datetime/query/aio/operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/encode-datetime/encode/datetime/query/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/encode-datetime/encode/datetime/query/aio/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/encode-datetime/encode/datetime/query/operations/_patch.py b/packages/typespec-python/tests/generated/azure/encode-datetime/encode/datetime/query/operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/encode-datetime/encode/datetime/query/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/encode-datetime/encode/datetime/query/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/encode-datetime/encode/datetime/responseheader/aio/operations/_patch.py b/packages/typespec-python/tests/generated/azure/encode-datetime/encode/datetime/responseheader/aio/operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/encode-datetime/encode/datetime/responseheader/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/encode-datetime/encode/datetime/responseheader/aio/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/encode-datetime/encode/datetime/responseheader/operations/_patch.py b/packages/typespec-python/tests/generated/azure/encode-datetime/encode/datetime/responseheader/operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/encode-datetime/encode/datetime/responseheader/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/encode-datetime/encode/datetime/responseheader/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/encode-duration/encode/duration/_patch.py b/packages/typespec-python/tests/generated/azure/encode-duration/encode/duration/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/encode-duration/encode/duration/_patch.py +++ b/packages/typespec-python/tests/generated/azure/encode-duration/encode/duration/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/encode-duration/encode/duration/aio/_patch.py b/packages/typespec-python/tests/generated/azure/encode-duration/encode/duration/aio/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/encode-duration/encode/duration/aio/_patch.py +++ b/packages/typespec-python/tests/generated/azure/encode-duration/encode/duration/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/encode-duration/encode/duration/aio/operations/_patch.py b/packages/typespec-python/tests/generated/azure/encode-duration/encode/duration/aio/operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/encode-duration/encode/duration/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/encode-duration/encode/duration/aio/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/encode-duration/encode/duration/models/_patch.py b/packages/typespec-python/tests/generated/azure/encode-duration/encode/duration/models/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/encode-duration/encode/duration/models/_patch.py +++ b/packages/typespec-python/tests/generated/azure/encode-duration/encode/duration/models/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/encode-duration/encode/duration/operations/_patch.py b/packages/typespec-python/tests/generated/azure/encode-duration/encode/duration/operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/encode-duration/encode/duration/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/encode-duration/encode/duration/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/encode-numeric/encode/numeric/_patch.py b/packages/typespec-python/tests/generated/azure/encode-numeric/encode/numeric/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/encode-numeric/encode/numeric/_patch.py +++ b/packages/typespec-python/tests/generated/azure/encode-numeric/encode/numeric/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/encode-numeric/encode/numeric/aio/_patch.py b/packages/typespec-python/tests/generated/azure/encode-numeric/encode/numeric/aio/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/encode-numeric/encode/numeric/aio/_patch.py +++ b/packages/typespec-python/tests/generated/azure/encode-numeric/encode/numeric/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/encode-numeric/encode/numeric/aio/operations/_patch.py b/packages/typespec-python/tests/generated/azure/encode-numeric/encode/numeric/aio/operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/encode-numeric/encode/numeric/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/encode-numeric/encode/numeric/aio/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/encode-numeric/encode/numeric/models/_patch.py b/packages/typespec-python/tests/generated/azure/encode-numeric/encode/numeric/models/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/encode-numeric/encode/numeric/models/_patch.py +++ b/packages/typespec-python/tests/generated/azure/encode-numeric/encode/numeric/models/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/encode-numeric/encode/numeric/operations/_patch.py b/packages/typespec-python/tests/generated/azure/encode-numeric/encode/numeric/operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/encode-numeric/encode/numeric/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/encode-numeric/encode/numeric/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/generation-subdir/generation/subdir/_generated/_operations/_patch.py b/packages/typespec-python/tests/generated/azure/generation-subdir/generation/subdir/_generated/_operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/generation-subdir/generation/subdir/_generated/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/generation-subdir/generation/subdir/_generated/_operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/generation-subdir/generation/subdir/_generated/_patch.py b/packages/typespec-python/tests/generated/azure/generation-subdir/generation/subdir/_generated/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/generation-subdir/generation/subdir/_generated/_patch.py +++ b/packages/typespec-python/tests/generated/azure/generation-subdir/generation/subdir/_generated/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/generation-subdir/generation/subdir/_generated/aio/_operations/_patch.py b/packages/typespec-python/tests/generated/azure/generation-subdir/generation/subdir/_generated/aio/_operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/generation-subdir/generation/subdir/_generated/aio/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/generation-subdir/generation/subdir/_generated/aio/_operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/generation-subdir/generation/subdir/_generated/aio/_patch.py b/packages/typespec-python/tests/generated/azure/generation-subdir/generation/subdir/_generated/aio/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/generation-subdir/generation/subdir/_generated/aio/_patch.py +++ b/packages/typespec-python/tests/generated/azure/generation-subdir/generation/subdir/_generated/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/generation-subdir/generation/subdir/_generated/models/_patch.py b/packages/typespec-python/tests/generated/azure/generation-subdir/generation/subdir/_generated/models/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/generation-subdir/generation/subdir/_generated/models/_patch.py +++ b/packages/typespec-python/tests/generated/azure/generation-subdir/generation/subdir/_generated/models/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/generation-subdir2/generation/subdir2/_generated/_patch.py b/packages/typespec-python/tests/generated/azure/generation-subdir2/generation/subdir2/_generated/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/generation-subdir2/generation/subdir2/_generated/_patch.py +++ b/packages/typespec-python/tests/generated/azure/generation-subdir2/generation/subdir2/_generated/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/generation-subdir2/generation/subdir2/_generated/aio/_patch.py b/packages/typespec-python/tests/generated/azure/generation-subdir2/generation/subdir2/_generated/aio/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/generation-subdir2/generation/subdir2/_generated/aio/_patch.py +++ b/packages/typespec-python/tests/generated/azure/generation-subdir2/generation/subdir2/_generated/aio/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/generation-subdir2/generation/subdir2/_generated/aio/operations/_patch.py b/packages/typespec-python/tests/generated/azure/generation-subdir2/generation/subdir2/_generated/aio/operations/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/generation-subdir2/generation/subdir2/_generated/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/generation-subdir2/generation/subdir2/_generated/aio/operations/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/generation-subdir2/generation/subdir2/_generated/models/_patch.py b/packages/typespec-python/tests/generated/azure/generation-subdir2/generation/subdir2/_generated/models/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/generation-subdir2/generation/subdir2/_generated/models/_patch.py +++ b/packages/typespec-python/tests/generated/azure/generation-subdir2/generation/subdir2/_generated/models/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/generation-subdir2/generation/subdir2/_generated/operations/_patch.py b/packages/typespec-python/tests/generated/azure/generation-subdir2/generation/subdir2/_generated/operations/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/generation-subdir2/generation/subdir2/_generated/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/generation-subdir2/generation/subdir2/_generated/operations/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/headasbooleanfalse/headasbooleanfalse/_operations/_patch.py b/packages/typespec-python/tests/generated/azure/headasbooleanfalse/headasbooleanfalse/_operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/headasbooleanfalse/headasbooleanfalse/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/headasbooleanfalse/headasbooleanfalse/_operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/headasbooleanfalse/headasbooleanfalse/_patch.py b/packages/typespec-python/tests/generated/azure/headasbooleanfalse/headasbooleanfalse/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/headasbooleanfalse/headasbooleanfalse/_patch.py +++ b/packages/typespec-python/tests/generated/azure/headasbooleanfalse/headasbooleanfalse/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/headasbooleanfalse/headasbooleanfalse/aio/_operations/_patch.py b/packages/typespec-python/tests/generated/azure/headasbooleanfalse/headasbooleanfalse/aio/_operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/headasbooleanfalse/headasbooleanfalse/aio/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/headasbooleanfalse/headasbooleanfalse/aio/_operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/headasbooleanfalse/headasbooleanfalse/aio/_patch.py b/packages/typespec-python/tests/generated/azure/headasbooleanfalse/headasbooleanfalse/aio/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/headasbooleanfalse/headasbooleanfalse/aio/_patch.py +++ b/packages/typespec-python/tests/generated/azure/headasbooleanfalse/headasbooleanfalse/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/headasbooleanfalse/headasbooleanfalse/models/_patch.py b/packages/typespec-python/tests/generated/azure/headasbooleanfalse/headasbooleanfalse/models/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/headasbooleanfalse/headasbooleanfalse/models/_patch.py +++ b/packages/typespec-python/tests/generated/azure/headasbooleanfalse/headasbooleanfalse/models/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/headasbooleantrue/headasbooleantrue/_operations/_patch.py b/packages/typespec-python/tests/generated/azure/headasbooleantrue/headasbooleantrue/_operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/headasbooleantrue/headasbooleantrue/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/headasbooleantrue/headasbooleantrue/_operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/headasbooleantrue/headasbooleantrue/_patch.py b/packages/typespec-python/tests/generated/azure/headasbooleantrue/headasbooleantrue/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/headasbooleantrue/headasbooleantrue/_patch.py +++ b/packages/typespec-python/tests/generated/azure/headasbooleantrue/headasbooleantrue/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/headasbooleantrue/headasbooleantrue/aio/_operations/_patch.py b/packages/typespec-python/tests/generated/azure/headasbooleantrue/headasbooleantrue/aio/_operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/headasbooleantrue/headasbooleantrue/aio/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/headasbooleantrue/headasbooleantrue/aio/_operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/headasbooleantrue/headasbooleantrue/aio/_patch.py b/packages/typespec-python/tests/generated/azure/headasbooleantrue/headasbooleantrue/aio/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/headasbooleantrue/headasbooleantrue/aio/_patch.py +++ b/packages/typespec-python/tests/generated/azure/headasbooleantrue/headasbooleantrue/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/headasbooleantrue/headasbooleantrue/models/_patch.py b/packages/typespec-python/tests/generated/azure/headasbooleantrue/headasbooleantrue/models/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/headasbooleantrue/headasbooleantrue/models/_patch.py +++ b/packages/typespec-python/tests/generated/azure/headasbooleantrue/headasbooleantrue/models/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/parameters-basic/parameters/basic/_patch.py b/packages/typespec-python/tests/generated/azure/parameters-basic/parameters/basic/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/parameters-basic/parameters/basic/_patch.py +++ b/packages/typespec-python/tests/generated/azure/parameters-basic/parameters/basic/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/parameters-basic/parameters/basic/aio/_patch.py b/packages/typespec-python/tests/generated/azure/parameters-basic/parameters/basic/aio/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/parameters-basic/parameters/basic/aio/_patch.py +++ b/packages/typespec-python/tests/generated/azure/parameters-basic/parameters/basic/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/parameters-basic/parameters/basic/aio/operations/_patch.py b/packages/typespec-python/tests/generated/azure/parameters-basic/parameters/basic/aio/operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/parameters-basic/parameters/basic/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/parameters-basic/parameters/basic/aio/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/parameters-basic/parameters/basic/models/_patch.py b/packages/typespec-python/tests/generated/azure/parameters-basic/parameters/basic/models/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/parameters-basic/parameters/basic/models/_patch.py +++ b/packages/typespec-python/tests/generated/azure/parameters-basic/parameters/basic/models/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/parameters-basic/parameters/basic/operations/_patch.py b/packages/typespec-python/tests/generated/azure/parameters-basic/parameters/basic/operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/parameters-basic/parameters/basic/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/parameters-basic/parameters/basic/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/parameters-body-optionality/parameters/bodyoptionality/_operations/_patch.py b/packages/typespec-python/tests/generated/azure/parameters-body-optionality/parameters/bodyoptionality/_operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/parameters-body-optionality/parameters/bodyoptionality/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/parameters-body-optionality/parameters/bodyoptionality/_operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/parameters-body-optionality/parameters/bodyoptionality/_patch.py b/packages/typespec-python/tests/generated/azure/parameters-body-optionality/parameters/bodyoptionality/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/parameters-body-optionality/parameters/bodyoptionality/_patch.py +++ b/packages/typespec-python/tests/generated/azure/parameters-body-optionality/parameters/bodyoptionality/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/parameters-body-optionality/parameters/bodyoptionality/aio/_operations/_patch.py b/packages/typespec-python/tests/generated/azure/parameters-body-optionality/parameters/bodyoptionality/aio/_operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/parameters-body-optionality/parameters/bodyoptionality/aio/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/parameters-body-optionality/parameters/bodyoptionality/aio/_operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/parameters-body-optionality/parameters/bodyoptionality/aio/_patch.py b/packages/typespec-python/tests/generated/azure/parameters-body-optionality/parameters/bodyoptionality/aio/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/parameters-body-optionality/parameters/bodyoptionality/aio/_patch.py +++ b/packages/typespec-python/tests/generated/azure/parameters-body-optionality/parameters/bodyoptionality/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/parameters-body-optionality/parameters/bodyoptionality/models/_patch.py b/packages/typespec-python/tests/generated/azure/parameters-body-optionality/parameters/bodyoptionality/models/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/parameters-body-optionality/parameters/bodyoptionality/models/_patch.py +++ b/packages/typespec-python/tests/generated/azure/parameters-body-optionality/parameters/bodyoptionality/models/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/parameters-body-optionality/parameters/bodyoptionality/optionalexplicit/aio/operations/_patch.py b/packages/typespec-python/tests/generated/azure/parameters-body-optionality/parameters/bodyoptionality/optionalexplicit/aio/operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/parameters-body-optionality/parameters/bodyoptionality/optionalexplicit/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/parameters-body-optionality/parameters/bodyoptionality/optionalexplicit/aio/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/parameters-body-optionality/parameters/bodyoptionality/optionalexplicit/operations/_patch.py b/packages/typespec-python/tests/generated/azure/parameters-body-optionality/parameters/bodyoptionality/optionalexplicit/operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/parameters-body-optionality/parameters/bodyoptionality/optionalexplicit/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/parameters-body-optionality/parameters/bodyoptionality/optionalexplicit/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/parameters-collection-format/parameters/collectionformat/_patch.py b/packages/typespec-python/tests/generated/azure/parameters-collection-format/parameters/collectionformat/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/parameters-collection-format/parameters/collectionformat/_patch.py +++ b/packages/typespec-python/tests/generated/azure/parameters-collection-format/parameters/collectionformat/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/parameters-collection-format/parameters/collectionformat/aio/_patch.py b/packages/typespec-python/tests/generated/azure/parameters-collection-format/parameters/collectionformat/aio/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/parameters-collection-format/parameters/collectionformat/aio/_patch.py +++ b/packages/typespec-python/tests/generated/azure/parameters-collection-format/parameters/collectionformat/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/parameters-collection-format/parameters/collectionformat/header/aio/operations/_patch.py b/packages/typespec-python/tests/generated/azure/parameters-collection-format/parameters/collectionformat/header/aio/operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/parameters-collection-format/parameters/collectionformat/header/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/parameters-collection-format/parameters/collectionformat/header/aio/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/parameters-collection-format/parameters/collectionformat/header/operations/_patch.py b/packages/typespec-python/tests/generated/azure/parameters-collection-format/parameters/collectionformat/header/operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/parameters-collection-format/parameters/collectionformat/header/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/parameters-collection-format/parameters/collectionformat/header/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/parameters-collection-format/parameters/collectionformat/query/aio/operations/_patch.py b/packages/typespec-python/tests/generated/azure/parameters-collection-format/parameters/collectionformat/query/aio/operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/parameters-collection-format/parameters/collectionformat/query/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/parameters-collection-format/parameters/collectionformat/query/aio/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/parameters-collection-format/parameters/collectionformat/query/operations/_patch.py b/packages/typespec-python/tests/generated/azure/parameters-collection-format/parameters/collectionformat/query/operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/parameters-collection-format/parameters/collectionformat/query/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/parameters-collection-format/parameters/collectionformat/query/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/parameters-path/parameters/path/_operations/_patch.py b/packages/typespec-python/tests/generated/azure/parameters-path/parameters/path/_operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/parameters-path/parameters/path/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/parameters-path/parameters/path/_operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/parameters-path/parameters/path/_patch.py b/packages/typespec-python/tests/generated/azure/parameters-path/parameters/path/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/parameters-path/parameters/path/_patch.py +++ b/packages/typespec-python/tests/generated/azure/parameters-path/parameters/path/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/parameters-path/parameters/path/aio/_operations/_patch.py b/packages/typespec-python/tests/generated/azure/parameters-path/parameters/path/aio/_operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/parameters-path/parameters/path/aio/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/parameters-path/parameters/path/aio/_operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/parameters-path/parameters/path/aio/_patch.py b/packages/typespec-python/tests/generated/azure/parameters-path/parameters/path/aio/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/parameters-path/parameters/path/aio/_patch.py +++ b/packages/typespec-python/tests/generated/azure/parameters-path/parameters/path/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/parameters-query/parameters/query/_patch.py b/packages/typespec-python/tests/generated/azure/parameters-query/parameters/query/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/parameters-query/parameters/query/_patch.py +++ b/packages/typespec-python/tests/generated/azure/parameters-query/parameters/query/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/parameters-query/parameters/query/aio/_patch.py b/packages/typespec-python/tests/generated/azure/parameters-query/parameters/query/aio/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/parameters-query/parameters/query/aio/_patch.py +++ b/packages/typespec-python/tests/generated/azure/parameters-query/parameters/query/aio/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/parameters-query/parameters/query/aio/operations/_patch.py b/packages/typespec-python/tests/generated/azure/parameters-query/parameters/query/aio/operations/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/parameters-query/parameters/query/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/parameters-query/parameters/query/aio/operations/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/parameters-query/parameters/query/operations/_patch.py b/packages/typespec-python/tests/generated/azure/parameters-query/parameters/query/operations/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/parameters-query/parameters/query/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/parameters-query/parameters/query/operations/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/parameters-spread/parameters/spread/_patch.py b/packages/typespec-python/tests/generated/azure/parameters-spread/parameters/spread/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/parameters-spread/parameters/spread/_patch.py +++ b/packages/typespec-python/tests/generated/azure/parameters-spread/parameters/spread/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/parameters-spread/parameters/spread/aio/_patch.py b/packages/typespec-python/tests/generated/azure/parameters-spread/parameters/spread/aio/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/parameters-spread/parameters/spread/aio/_patch.py +++ b/packages/typespec-python/tests/generated/azure/parameters-spread/parameters/spread/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/parameters-spread/parameters/spread/aio/operations/_patch.py b/packages/typespec-python/tests/generated/azure/parameters-spread/parameters/spread/aio/operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/parameters-spread/parameters/spread/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/parameters-spread/parameters/spread/aio/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/parameters-spread/parameters/spread/models/_patch.py b/packages/typespec-python/tests/generated/azure/parameters-spread/parameters/spread/models/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/parameters-spread/parameters/spread/models/_patch.py +++ b/packages/typespec-python/tests/generated/azure/parameters-spread/parameters/spread/models/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/parameters-spread/parameters/spread/operations/_patch.py b/packages/typespec-python/tests/generated/azure/parameters-spread/parameters/spread/operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/parameters-spread/parameters/spread/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/parameters-spread/parameters/spread/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/payload-content-negotiation/payload/contentnegotiation/_patch.py b/packages/typespec-python/tests/generated/azure/payload-content-negotiation/payload/contentnegotiation/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/payload-content-negotiation/payload/contentnegotiation/_patch.py +++ b/packages/typespec-python/tests/generated/azure/payload-content-negotiation/payload/contentnegotiation/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/payload-content-negotiation/payload/contentnegotiation/aio/_patch.py b/packages/typespec-python/tests/generated/azure/payload-content-negotiation/payload/contentnegotiation/aio/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/payload-content-negotiation/payload/contentnegotiation/aio/_patch.py +++ b/packages/typespec-python/tests/generated/azure/payload-content-negotiation/payload/contentnegotiation/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/payload-content-negotiation/payload/contentnegotiation/aio/operations/_patch.py b/packages/typespec-python/tests/generated/azure/payload-content-negotiation/payload/contentnegotiation/aio/operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/payload-content-negotiation/payload/contentnegotiation/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/payload-content-negotiation/payload/contentnegotiation/aio/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/payload-content-negotiation/payload/contentnegotiation/models/_patch.py b/packages/typespec-python/tests/generated/azure/payload-content-negotiation/payload/contentnegotiation/models/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/payload-content-negotiation/payload/contentnegotiation/models/_patch.py +++ b/packages/typespec-python/tests/generated/azure/payload-content-negotiation/payload/contentnegotiation/models/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/payload-content-negotiation/payload/contentnegotiation/operations/_patch.py b/packages/typespec-python/tests/generated/azure/payload-content-negotiation/payload/contentnegotiation/operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/payload-content-negotiation/payload/contentnegotiation/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/payload-content-negotiation/payload/contentnegotiation/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/payload-json-merge-patch/payload/jsonmergepatch/_operations/_patch.py b/packages/typespec-python/tests/generated/azure/payload-json-merge-patch/payload/jsonmergepatch/_operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/payload-json-merge-patch/payload/jsonmergepatch/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/payload-json-merge-patch/payload/jsonmergepatch/_operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/payload-json-merge-patch/payload/jsonmergepatch/_patch.py b/packages/typespec-python/tests/generated/azure/payload-json-merge-patch/payload/jsonmergepatch/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/payload-json-merge-patch/payload/jsonmergepatch/_patch.py +++ b/packages/typespec-python/tests/generated/azure/payload-json-merge-patch/payload/jsonmergepatch/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/payload-json-merge-patch/payload/jsonmergepatch/aio/_operations/_patch.py b/packages/typespec-python/tests/generated/azure/payload-json-merge-patch/payload/jsonmergepatch/aio/_operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/payload-json-merge-patch/payload/jsonmergepatch/aio/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/payload-json-merge-patch/payload/jsonmergepatch/aio/_operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/payload-json-merge-patch/payload/jsonmergepatch/aio/_patch.py b/packages/typespec-python/tests/generated/azure/payload-json-merge-patch/payload/jsonmergepatch/aio/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/payload-json-merge-patch/payload/jsonmergepatch/aio/_patch.py +++ b/packages/typespec-python/tests/generated/azure/payload-json-merge-patch/payload/jsonmergepatch/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/payload-json-merge-patch/payload/jsonmergepatch/models/_patch.py b/packages/typespec-python/tests/generated/azure/payload-json-merge-patch/payload/jsonmergepatch/models/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/payload-json-merge-patch/payload/jsonmergepatch/models/_patch.py +++ b/packages/typespec-python/tests/generated/azure/payload-json-merge-patch/payload/jsonmergepatch/models/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/payload-media-type/payload/mediatype/_patch.py b/packages/typespec-python/tests/generated/azure/payload-media-type/payload/mediatype/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/payload-media-type/payload/mediatype/_patch.py +++ b/packages/typespec-python/tests/generated/azure/payload-media-type/payload/mediatype/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/payload-media-type/payload/mediatype/aio/_patch.py b/packages/typespec-python/tests/generated/azure/payload-media-type/payload/mediatype/aio/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/payload-media-type/payload/mediatype/aio/_patch.py +++ b/packages/typespec-python/tests/generated/azure/payload-media-type/payload/mediatype/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/payload-media-type/payload/mediatype/stringbody/aio/operations/_patch.py b/packages/typespec-python/tests/generated/azure/payload-media-type/payload/mediatype/stringbody/aio/operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/payload-media-type/payload/mediatype/stringbody/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/payload-media-type/payload/mediatype/stringbody/aio/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/payload-media-type/payload/mediatype/stringbody/operations/_patch.py b/packages/typespec-python/tests/generated/azure/payload-media-type/payload/mediatype/stringbody/operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/payload-media-type/payload/mediatype/stringbody/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/payload-media-type/payload/mediatype/stringbody/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/payload-multipart/payload/multipart/_patch.py b/packages/typespec-python/tests/generated/azure/payload-multipart/payload/multipart/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/payload-multipart/payload/multipart/_patch.py +++ b/packages/typespec-python/tests/generated/azure/payload-multipart/payload/multipart/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/payload-multipart/payload/multipart/_utils/utils.py b/packages/typespec-python/tests/generated/azure/payload-multipart/payload/multipart/_utils/utils.py index bd821750f4c..707b7d8fac7 100644 --- a/packages/typespec-python/tests/generated/azure/payload-multipart/payload/multipart/_utils/utils.py +++ b/packages/typespec-python/tests/generated/azure/payload-multipart/payload/multipart/_utils/utils.py @@ -10,7 +10,6 @@ from .._utils.model_base import Model, SdkJSONEncoder - # file-like tuple could be `(filename, IO (or bytes))` or `(filename, IO (or bytes), content_type)` FileContent = Union[str, bytes, IO[str], IO[bytes]] diff --git a/packages/typespec-python/tests/generated/azure/payload-multipart/payload/multipart/aio/_patch.py b/packages/typespec-python/tests/generated/azure/payload-multipart/payload/multipart/aio/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/payload-multipart/payload/multipart/aio/_patch.py +++ b/packages/typespec-python/tests/generated/azure/payload-multipart/payload/multipart/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/payload-multipart/payload/multipart/aio/operations/_patch.py b/packages/typespec-python/tests/generated/azure/payload-multipart/payload/multipart/aio/operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/payload-multipart/payload/multipart/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/payload-multipart/payload/multipart/aio/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/payload-multipart/payload/multipart/models/_patch.py b/packages/typespec-python/tests/generated/azure/payload-multipart/payload/multipart/models/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/payload-multipart/payload/multipart/models/_patch.py +++ b/packages/typespec-python/tests/generated/azure/payload-multipart/payload/multipart/models/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/payload-multipart/payload/multipart/operations/_patch.py b/packages/typespec-python/tests/generated/azure/payload-multipart/payload/multipart/operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/payload-multipart/payload/multipart/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/payload-multipart/payload/multipart/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/payload-pageable/payload/pageable/_operations/_patch.py b/packages/typespec-python/tests/generated/azure/payload-pageable/payload/pageable/_operations/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/payload-pageable/payload/pageable/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/payload-pageable/payload/pageable/_operations/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/payload-pageable/payload/pageable/_patch.py b/packages/typespec-python/tests/generated/azure/payload-pageable/payload/pageable/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/payload-pageable/payload/pageable/_patch.py +++ b/packages/typespec-python/tests/generated/azure/payload-pageable/payload/pageable/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/payload-pageable/payload/pageable/aio/_operations/_patch.py b/packages/typespec-python/tests/generated/azure/payload-pageable/payload/pageable/aio/_operations/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/payload-pageable/payload/pageable/aio/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/payload-pageable/payload/pageable/aio/_operations/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/payload-pageable/payload/pageable/aio/_patch.py b/packages/typespec-python/tests/generated/azure/payload-pageable/payload/pageable/aio/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/payload-pageable/payload/pageable/aio/_patch.py +++ b/packages/typespec-python/tests/generated/azure/payload-pageable/payload/pageable/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/payload-pageable/payload/pageable/models/_patch.py b/packages/typespec-python/tests/generated/azure/payload-pageable/payload/pageable/models/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/payload-pageable/payload/pageable/models/_patch.py +++ b/packages/typespec-python/tests/generated/azure/payload-pageable/payload/pageable/models/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/payload-pageable/payload/pageable/pagesize/aio/operations/_patch.py b/packages/typespec-python/tests/generated/azure/payload-pageable/payload/pageable/pagesize/aio/operations/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/payload-pageable/payload/pageable/pagesize/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/payload-pageable/payload/pageable/pagesize/aio/operations/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/payload-pageable/payload/pageable/pagesize/operations/_patch.py b/packages/typespec-python/tests/generated/azure/payload-pageable/payload/pageable/pagesize/operations/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/payload-pageable/payload/pageable/pagesize/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/payload-pageable/payload/pageable/pagesize/operations/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/payload-pageable/payload/pageable/serverdrivenpagination/aio/operations/_patch.py b/packages/typespec-python/tests/generated/azure/payload-pageable/payload/pageable/serverdrivenpagination/aio/operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/payload-pageable/payload/pageable/serverdrivenpagination/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/payload-pageable/payload/pageable/serverdrivenpagination/aio/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/payload-pageable/payload/pageable/serverdrivenpagination/alternateinitialverb/aio/operations/_patch.py b/packages/typespec-python/tests/generated/azure/payload-pageable/payload/pageable/serverdrivenpagination/alternateinitialverb/aio/operations/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/payload-pageable/payload/pageable/serverdrivenpagination/alternateinitialverb/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/payload-pageable/payload/pageable/serverdrivenpagination/alternateinitialverb/aio/operations/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/payload-pageable/payload/pageable/serverdrivenpagination/alternateinitialverb/models/_patch.py b/packages/typespec-python/tests/generated/azure/payload-pageable/payload/pageable/serverdrivenpagination/alternateinitialverb/models/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/payload-pageable/payload/pageable/serverdrivenpagination/alternateinitialverb/models/_patch.py +++ b/packages/typespec-python/tests/generated/azure/payload-pageable/payload/pageable/serverdrivenpagination/alternateinitialverb/models/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/payload-pageable/payload/pageable/serverdrivenpagination/alternateinitialverb/operations/_patch.py b/packages/typespec-python/tests/generated/azure/payload-pageable/payload/pageable/serverdrivenpagination/alternateinitialverb/operations/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/payload-pageable/payload/pageable/serverdrivenpagination/alternateinitialverb/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/payload-pageable/payload/pageable/serverdrivenpagination/alternateinitialverb/operations/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/payload-pageable/payload/pageable/serverdrivenpagination/continuationtoken/aio/operations/_patch.py b/packages/typespec-python/tests/generated/azure/payload-pageable/payload/pageable/serverdrivenpagination/continuationtoken/aio/operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/payload-pageable/payload/pageable/serverdrivenpagination/continuationtoken/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/payload-pageable/payload/pageable/serverdrivenpagination/continuationtoken/aio/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/payload-pageable/payload/pageable/serverdrivenpagination/continuationtoken/models/_patch.py b/packages/typespec-python/tests/generated/azure/payload-pageable/payload/pageable/serverdrivenpagination/continuationtoken/models/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/payload-pageable/payload/pageable/serverdrivenpagination/continuationtoken/models/_patch.py +++ b/packages/typespec-python/tests/generated/azure/payload-pageable/payload/pageable/serverdrivenpagination/continuationtoken/models/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/payload-pageable/payload/pageable/serverdrivenpagination/continuationtoken/operations/_patch.py b/packages/typespec-python/tests/generated/azure/payload-pageable/payload/pageable/serverdrivenpagination/continuationtoken/operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/payload-pageable/payload/pageable/serverdrivenpagination/continuationtoken/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/payload-pageable/payload/pageable/serverdrivenpagination/continuationtoken/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/payload-pageable/payload/pageable/serverdrivenpagination/models/_patch.py b/packages/typespec-python/tests/generated/azure/payload-pageable/payload/pageable/serverdrivenpagination/models/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/payload-pageable/payload/pageable/serverdrivenpagination/models/_patch.py +++ b/packages/typespec-python/tests/generated/azure/payload-pageable/payload/pageable/serverdrivenpagination/models/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/payload-pageable/payload/pageable/serverdrivenpagination/operations/_patch.py b/packages/typespec-python/tests/generated/azure/payload-pageable/payload/pageable/serverdrivenpagination/operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/payload-pageable/payload/pageable/serverdrivenpagination/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/payload-pageable/payload/pageable/serverdrivenpagination/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/payload-pageable/payload/pageable/xmlpagination/aio/operations/_patch.py b/packages/typespec-python/tests/generated/azure/payload-pageable/payload/pageable/xmlpagination/aio/operations/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/payload-pageable/payload/pageable/xmlpagination/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/payload-pageable/payload/pageable/xmlpagination/aio/operations/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/payload-pageable/payload/pageable/xmlpagination/operations/_patch.py b/packages/typespec-python/tests/generated/azure/payload-pageable/payload/pageable/xmlpagination/operations/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/payload-pageable/payload/pageable/xmlpagination/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/payload-pageable/payload/pageable/xmlpagination/operations/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/payload-xml/payload/xml/_patch.py b/packages/typespec-python/tests/generated/azure/payload-xml/payload/xml/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/payload-xml/payload/xml/_patch.py +++ b/packages/typespec-python/tests/generated/azure/payload-xml/payload/xml/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/payload-xml/payload/xml/aio/_patch.py b/packages/typespec-python/tests/generated/azure/payload-xml/payload/xml/aio/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/payload-xml/payload/xml/aio/_patch.py +++ b/packages/typespec-python/tests/generated/azure/payload-xml/payload/xml/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/payload-xml/payload/xml/aio/operations/_patch.py b/packages/typespec-python/tests/generated/azure/payload-xml/payload/xml/aio/operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/payload-xml/payload/xml/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/payload-xml/payload/xml/aio/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/payload-xml/payload/xml/models/_patch.py b/packages/typespec-python/tests/generated/azure/payload-xml/payload/xml/models/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/payload-xml/payload/xml/models/_patch.py +++ b/packages/typespec-python/tests/generated/azure/payload-xml/payload/xml/models/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/payload-xml/payload/xml/operations/_patch.py b/packages/typespec-python/tests/generated/azure/payload-xml/payload/xml/operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/payload-xml/payload/xml/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/payload-xml/payload/xml/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/resiliency-srv-driven1/resiliency/srv/driven1/_operations/_patch.py b/packages/typespec-python/tests/generated/azure/resiliency-srv-driven1/resiliency/srv/driven1/_operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/resiliency-srv-driven1/resiliency/srv/driven1/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/resiliency-srv-driven1/resiliency/srv/driven1/_operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/resiliency-srv-driven1/resiliency/srv/driven1/_patch.py b/packages/typespec-python/tests/generated/azure/resiliency-srv-driven1/resiliency/srv/driven1/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/resiliency-srv-driven1/resiliency/srv/driven1/_patch.py +++ b/packages/typespec-python/tests/generated/azure/resiliency-srv-driven1/resiliency/srv/driven1/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/resiliency-srv-driven1/resiliency/srv/driven1/aio/_operations/_patch.py b/packages/typespec-python/tests/generated/azure/resiliency-srv-driven1/resiliency/srv/driven1/aio/_operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/resiliency-srv-driven1/resiliency/srv/driven1/aio/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/resiliency-srv-driven1/resiliency/srv/driven1/aio/_operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/resiliency-srv-driven1/resiliency/srv/driven1/aio/_patch.py b/packages/typespec-python/tests/generated/azure/resiliency-srv-driven1/resiliency/srv/driven1/aio/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/resiliency-srv-driven1/resiliency/srv/driven1/aio/_patch.py +++ b/packages/typespec-python/tests/generated/azure/resiliency-srv-driven1/resiliency/srv/driven1/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/resiliency-srv-driven2/resiliency/srv/driven2/_operations/_patch.py b/packages/typespec-python/tests/generated/azure/resiliency-srv-driven2/resiliency/srv/driven2/_operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/resiliency-srv-driven2/resiliency/srv/driven2/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/resiliency-srv-driven2/resiliency/srv/driven2/_operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/resiliency-srv-driven2/resiliency/srv/driven2/_patch.py b/packages/typespec-python/tests/generated/azure/resiliency-srv-driven2/resiliency/srv/driven2/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/resiliency-srv-driven2/resiliency/srv/driven2/_patch.py +++ b/packages/typespec-python/tests/generated/azure/resiliency-srv-driven2/resiliency/srv/driven2/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/resiliency-srv-driven2/resiliency/srv/driven2/aio/_operations/_patch.py b/packages/typespec-python/tests/generated/azure/resiliency-srv-driven2/resiliency/srv/driven2/aio/_operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/resiliency-srv-driven2/resiliency/srv/driven2/aio/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/resiliency-srv-driven2/resiliency/srv/driven2/aio/_operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/resiliency-srv-driven2/resiliency/srv/driven2/aio/_patch.py b/packages/typespec-python/tests/generated/azure/resiliency-srv-driven2/resiliency/srv/driven2/aio/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/resiliency-srv-driven2/resiliency/srv/driven2/aio/_patch.py +++ b/packages/typespec-python/tests/generated/azure/resiliency-srv-driven2/resiliency/srv/driven2/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/response-status-code-range/response/statuscoderange/_operations/_patch.py b/packages/typespec-python/tests/generated/azure/response-status-code-range/response/statuscoderange/_operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/response-status-code-range/response/statuscoderange/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/response-status-code-range/response/statuscoderange/_operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/response-status-code-range/response/statuscoderange/_patch.py b/packages/typespec-python/tests/generated/azure/response-status-code-range/response/statuscoderange/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/response-status-code-range/response/statuscoderange/_patch.py +++ b/packages/typespec-python/tests/generated/azure/response-status-code-range/response/statuscoderange/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/response-status-code-range/response/statuscoderange/aio/_operations/_patch.py b/packages/typespec-python/tests/generated/azure/response-status-code-range/response/statuscoderange/aio/_operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/response-status-code-range/response/statuscoderange/aio/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/response-status-code-range/response/statuscoderange/aio/_operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/response-status-code-range/response/statuscoderange/aio/_patch.py b/packages/typespec-python/tests/generated/azure/response-status-code-range/response/statuscoderange/aio/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/response-status-code-range/response/statuscoderange/aio/_patch.py +++ b/packages/typespec-python/tests/generated/azure/response-status-code-range/response/statuscoderange/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/response-status-code-range/response/statuscoderange/models/_patch.py b/packages/typespec-python/tests/generated/azure/response-status-code-range/response/statuscoderange/models/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/response-status-code-range/response/statuscoderange/models/_patch.py +++ b/packages/typespec-python/tests/generated/azure/response-status-code-range/response/statuscoderange/models/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/routes/routes/_patch.py b/packages/typespec-python/tests/generated/azure/routes/routes/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/routes/routes/_patch.py +++ b/packages/typespec-python/tests/generated/azure/routes/routes/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/routes/routes/aio/_patch.py b/packages/typespec-python/tests/generated/azure/routes/routes/aio/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/routes/routes/aio/_patch.py +++ b/packages/typespec-python/tests/generated/azure/routes/routes/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/routes/routes/aio/operations/_patch.py b/packages/typespec-python/tests/generated/azure/routes/routes/aio/operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/routes/routes/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/routes/routes/aio/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/routes/routes/operations/_patch.py b/packages/typespec-python/tests/generated/azure/routes/routes/operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/routes/routes/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/routes/routes/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/routes/routes/pathparameters/aio/operations/_patch.py b/packages/typespec-python/tests/generated/azure/routes/routes/pathparameters/aio/operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/routes/routes/pathparameters/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/routes/routes/pathparameters/aio/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/routes/routes/pathparameters/labelexpansion/aio/operations/_patch.py b/packages/typespec-python/tests/generated/azure/routes/routes/pathparameters/labelexpansion/aio/operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/routes/routes/pathparameters/labelexpansion/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/routes/routes/pathparameters/labelexpansion/aio/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/routes/routes/pathparameters/labelexpansion/explode/aio/operations/_patch.py b/packages/typespec-python/tests/generated/azure/routes/routes/pathparameters/labelexpansion/explode/aio/operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/routes/routes/pathparameters/labelexpansion/explode/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/routes/routes/pathparameters/labelexpansion/explode/aio/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/routes/routes/pathparameters/labelexpansion/explode/operations/_patch.py b/packages/typespec-python/tests/generated/azure/routes/routes/pathparameters/labelexpansion/explode/operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/routes/routes/pathparameters/labelexpansion/explode/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/routes/routes/pathparameters/labelexpansion/explode/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/routes/routes/pathparameters/labelexpansion/operations/_patch.py b/packages/typespec-python/tests/generated/azure/routes/routes/pathparameters/labelexpansion/operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/routes/routes/pathparameters/labelexpansion/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/routes/routes/pathparameters/labelexpansion/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/routes/routes/pathparameters/labelexpansion/standard/aio/operations/_patch.py b/packages/typespec-python/tests/generated/azure/routes/routes/pathparameters/labelexpansion/standard/aio/operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/routes/routes/pathparameters/labelexpansion/standard/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/routes/routes/pathparameters/labelexpansion/standard/aio/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/routes/routes/pathparameters/labelexpansion/standard/operations/_patch.py b/packages/typespec-python/tests/generated/azure/routes/routes/pathparameters/labelexpansion/standard/operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/routes/routes/pathparameters/labelexpansion/standard/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/routes/routes/pathparameters/labelexpansion/standard/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/routes/routes/pathparameters/matrixexpansion/aio/operations/_patch.py b/packages/typespec-python/tests/generated/azure/routes/routes/pathparameters/matrixexpansion/aio/operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/routes/routes/pathparameters/matrixexpansion/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/routes/routes/pathparameters/matrixexpansion/aio/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/routes/routes/pathparameters/matrixexpansion/explode/aio/operations/_patch.py b/packages/typespec-python/tests/generated/azure/routes/routes/pathparameters/matrixexpansion/explode/aio/operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/routes/routes/pathparameters/matrixexpansion/explode/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/routes/routes/pathparameters/matrixexpansion/explode/aio/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/routes/routes/pathparameters/matrixexpansion/explode/operations/_patch.py b/packages/typespec-python/tests/generated/azure/routes/routes/pathparameters/matrixexpansion/explode/operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/routes/routes/pathparameters/matrixexpansion/explode/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/routes/routes/pathparameters/matrixexpansion/explode/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/routes/routes/pathparameters/matrixexpansion/operations/_patch.py b/packages/typespec-python/tests/generated/azure/routes/routes/pathparameters/matrixexpansion/operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/routes/routes/pathparameters/matrixexpansion/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/routes/routes/pathparameters/matrixexpansion/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/routes/routes/pathparameters/matrixexpansion/standard/aio/operations/_patch.py b/packages/typespec-python/tests/generated/azure/routes/routes/pathparameters/matrixexpansion/standard/aio/operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/routes/routes/pathparameters/matrixexpansion/standard/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/routes/routes/pathparameters/matrixexpansion/standard/aio/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/routes/routes/pathparameters/matrixexpansion/standard/operations/_patch.py b/packages/typespec-python/tests/generated/azure/routes/routes/pathparameters/matrixexpansion/standard/operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/routes/routes/pathparameters/matrixexpansion/standard/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/routes/routes/pathparameters/matrixexpansion/standard/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/routes/routes/pathparameters/operations/_patch.py b/packages/typespec-python/tests/generated/azure/routes/routes/pathparameters/operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/routes/routes/pathparameters/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/routes/routes/pathparameters/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/routes/routes/pathparameters/pathexpansion/aio/operations/_patch.py b/packages/typespec-python/tests/generated/azure/routes/routes/pathparameters/pathexpansion/aio/operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/routes/routes/pathparameters/pathexpansion/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/routes/routes/pathparameters/pathexpansion/aio/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/routes/routes/pathparameters/pathexpansion/explode/aio/operations/_patch.py b/packages/typespec-python/tests/generated/azure/routes/routes/pathparameters/pathexpansion/explode/aio/operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/routes/routes/pathparameters/pathexpansion/explode/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/routes/routes/pathparameters/pathexpansion/explode/aio/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/routes/routes/pathparameters/pathexpansion/explode/operations/_patch.py b/packages/typespec-python/tests/generated/azure/routes/routes/pathparameters/pathexpansion/explode/operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/routes/routes/pathparameters/pathexpansion/explode/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/routes/routes/pathparameters/pathexpansion/explode/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/routes/routes/pathparameters/pathexpansion/operations/_patch.py b/packages/typespec-python/tests/generated/azure/routes/routes/pathparameters/pathexpansion/operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/routes/routes/pathparameters/pathexpansion/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/routes/routes/pathparameters/pathexpansion/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/routes/routes/pathparameters/pathexpansion/standard/aio/operations/_patch.py b/packages/typespec-python/tests/generated/azure/routes/routes/pathparameters/pathexpansion/standard/aio/operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/routes/routes/pathparameters/pathexpansion/standard/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/routes/routes/pathparameters/pathexpansion/standard/aio/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/routes/routes/pathparameters/pathexpansion/standard/operations/_patch.py b/packages/typespec-python/tests/generated/azure/routes/routes/pathparameters/pathexpansion/standard/operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/routes/routes/pathparameters/pathexpansion/standard/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/routes/routes/pathparameters/pathexpansion/standard/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/routes/routes/pathparameters/reservedexpansion/aio/operations/_patch.py b/packages/typespec-python/tests/generated/azure/routes/routes/pathparameters/reservedexpansion/aio/operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/routes/routes/pathparameters/reservedexpansion/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/routes/routes/pathparameters/reservedexpansion/aio/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/routes/routes/pathparameters/reservedexpansion/operations/_patch.py b/packages/typespec-python/tests/generated/azure/routes/routes/pathparameters/reservedexpansion/operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/routes/routes/pathparameters/reservedexpansion/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/routes/routes/pathparameters/reservedexpansion/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/routes/routes/pathparameters/simpleexpansion/aio/operations/_patch.py b/packages/typespec-python/tests/generated/azure/routes/routes/pathparameters/simpleexpansion/aio/operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/routes/routes/pathparameters/simpleexpansion/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/routes/routes/pathparameters/simpleexpansion/aio/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/routes/routes/pathparameters/simpleexpansion/explode/aio/operations/_patch.py b/packages/typespec-python/tests/generated/azure/routes/routes/pathparameters/simpleexpansion/explode/aio/operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/routes/routes/pathparameters/simpleexpansion/explode/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/routes/routes/pathparameters/simpleexpansion/explode/aio/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/routes/routes/pathparameters/simpleexpansion/explode/operations/_patch.py b/packages/typespec-python/tests/generated/azure/routes/routes/pathparameters/simpleexpansion/explode/operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/routes/routes/pathparameters/simpleexpansion/explode/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/routes/routes/pathparameters/simpleexpansion/explode/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/routes/routes/pathparameters/simpleexpansion/operations/_patch.py b/packages/typespec-python/tests/generated/azure/routes/routes/pathparameters/simpleexpansion/operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/routes/routes/pathparameters/simpleexpansion/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/routes/routes/pathparameters/simpleexpansion/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/routes/routes/pathparameters/simpleexpansion/standard/aio/operations/_patch.py b/packages/typespec-python/tests/generated/azure/routes/routes/pathparameters/simpleexpansion/standard/aio/operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/routes/routes/pathparameters/simpleexpansion/standard/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/routes/routes/pathparameters/simpleexpansion/standard/aio/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/routes/routes/pathparameters/simpleexpansion/standard/operations/_patch.py b/packages/typespec-python/tests/generated/azure/routes/routes/pathparameters/simpleexpansion/standard/operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/routes/routes/pathparameters/simpleexpansion/standard/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/routes/routes/pathparameters/simpleexpansion/standard/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/routes/routes/queryparameters/aio/operations/_patch.py b/packages/typespec-python/tests/generated/azure/routes/routes/queryparameters/aio/operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/routes/routes/queryparameters/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/routes/routes/queryparameters/aio/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/routes/routes/queryparameters/operations/_patch.py b/packages/typespec-python/tests/generated/azure/routes/routes/queryparameters/operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/routes/routes/queryparameters/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/routes/routes/queryparameters/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/routes/routes/queryparameters/querycontinuation/aio/operations/_patch.py b/packages/typespec-python/tests/generated/azure/routes/routes/queryparameters/querycontinuation/aio/operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/routes/routes/queryparameters/querycontinuation/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/routes/routes/queryparameters/querycontinuation/aio/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/routes/routes/queryparameters/querycontinuation/explode/aio/operations/_patch.py b/packages/typespec-python/tests/generated/azure/routes/routes/queryparameters/querycontinuation/explode/aio/operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/routes/routes/queryparameters/querycontinuation/explode/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/routes/routes/queryparameters/querycontinuation/explode/aio/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/routes/routes/queryparameters/querycontinuation/explode/operations/_patch.py b/packages/typespec-python/tests/generated/azure/routes/routes/queryparameters/querycontinuation/explode/operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/routes/routes/queryparameters/querycontinuation/explode/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/routes/routes/queryparameters/querycontinuation/explode/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/routes/routes/queryparameters/querycontinuation/operations/_patch.py b/packages/typespec-python/tests/generated/azure/routes/routes/queryparameters/querycontinuation/operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/routes/routes/queryparameters/querycontinuation/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/routes/routes/queryparameters/querycontinuation/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/routes/routes/queryparameters/querycontinuation/standard/aio/operations/_patch.py b/packages/typespec-python/tests/generated/azure/routes/routes/queryparameters/querycontinuation/standard/aio/operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/routes/routes/queryparameters/querycontinuation/standard/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/routes/routes/queryparameters/querycontinuation/standard/aio/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/routes/routes/queryparameters/querycontinuation/standard/operations/_patch.py b/packages/typespec-python/tests/generated/azure/routes/routes/queryparameters/querycontinuation/standard/operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/routes/routes/queryparameters/querycontinuation/standard/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/routes/routes/queryparameters/querycontinuation/standard/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/routes/routes/queryparameters/queryexpansion/aio/operations/_patch.py b/packages/typespec-python/tests/generated/azure/routes/routes/queryparameters/queryexpansion/aio/operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/routes/routes/queryparameters/queryexpansion/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/routes/routes/queryparameters/queryexpansion/aio/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/routes/routes/queryparameters/queryexpansion/explode/aio/operations/_patch.py b/packages/typespec-python/tests/generated/azure/routes/routes/queryparameters/queryexpansion/explode/aio/operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/routes/routes/queryparameters/queryexpansion/explode/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/routes/routes/queryparameters/queryexpansion/explode/aio/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/routes/routes/queryparameters/queryexpansion/explode/operations/_patch.py b/packages/typespec-python/tests/generated/azure/routes/routes/queryparameters/queryexpansion/explode/operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/routes/routes/queryparameters/queryexpansion/explode/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/routes/routes/queryparameters/queryexpansion/explode/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/routes/routes/queryparameters/queryexpansion/operations/_patch.py b/packages/typespec-python/tests/generated/azure/routes/routes/queryparameters/queryexpansion/operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/routes/routes/queryparameters/queryexpansion/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/routes/routes/queryparameters/queryexpansion/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/routes/routes/queryparameters/queryexpansion/standard/aio/operations/_patch.py b/packages/typespec-python/tests/generated/azure/routes/routes/queryparameters/queryexpansion/standard/aio/operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/routes/routes/queryparameters/queryexpansion/standard/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/routes/routes/queryparameters/queryexpansion/standard/aio/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/routes/routes/queryparameters/queryexpansion/standard/operations/_patch.py b/packages/typespec-python/tests/generated/azure/routes/routes/queryparameters/queryexpansion/standard/operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/routes/routes/queryparameters/queryexpansion/standard/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/routes/routes/queryparameters/queryexpansion/standard/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/serialization-encoded-name-json/serialization/encodedname/json/_patch.py b/packages/typespec-python/tests/generated/azure/serialization-encoded-name-json/serialization/encodedname/json/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/serialization-encoded-name-json/serialization/encodedname/json/_patch.py +++ b/packages/typespec-python/tests/generated/azure/serialization-encoded-name-json/serialization/encodedname/json/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/serialization-encoded-name-json/serialization/encodedname/json/aio/_patch.py b/packages/typespec-python/tests/generated/azure/serialization-encoded-name-json/serialization/encodedname/json/aio/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/serialization-encoded-name-json/serialization/encodedname/json/aio/_patch.py +++ b/packages/typespec-python/tests/generated/azure/serialization-encoded-name-json/serialization/encodedname/json/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/serialization-encoded-name-json/serialization/encodedname/json/aio/operations/_patch.py b/packages/typespec-python/tests/generated/azure/serialization-encoded-name-json/serialization/encodedname/json/aio/operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/serialization-encoded-name-json/serialization/encodedname/json/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/serialization-encoded-name-json/serialization/encodedname/json/aio/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/serialization-encoded-name-json/serialization/encodedname/json/models/_patch.py b/packages/typespec-python/tests/generated/azure/serialization-encoded-name-json/serialization/encodedname/json/models/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/serialization-encoded-name-json/serialization/encodedname/json/models/_patch.py +++ b/packages/typespec-python/tests/generated/azure/serialization-encoded-name-json/serialization/encodedname/json/models/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/serialization-encoded-name-json/serialization/encodedname/json/operations/_patch.py b/packages/typespec-python/tests/generated/azure/serialization-encoded-name-json/serialization/encodedname/json/operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/serialization-encoded-name-json/serialization/encodedname/json/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/serialization-encoded-name-json/serialization/encodedname/json/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/server-endpoint-not-defined/server/endpoint/notdefined/_operations/_patch.py b/packages/typespec-python/tests/generated/azure/server-endpoint-not-defined/server/endpoint/notdefined/_operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/server-endpoint-not-defined/server/endpoint/notdefined/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/server-endpoint-not-defined/server/endpoint/notdefined/_operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/server-endpoint-not-defined/server/endpoint/notdefined/_patch.py b/packages/typespec-python/tests/generated/azure/server-endpoint-not-defined/server/endpoint/notdefined/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/server-endpoint-not-defined/server/endpoint/notdefined/_patch.py +++ b/packages/typespec-python/tests/generated/azure/server-endpoint-not-defined/server/endpoint/notdefined/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/server-endpoint-not-defined/server/endpoint/notdefined/aio/_operations/_patch.py b/packages/typespec-python/tests/generated/azure/server-endpoint-not-defined/server/endpoint/notdefined/aio/_operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/server-endpoint-not-defined/server/endpoint/notdefined/aio/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/server-endpoint-not-defined/server/endpoint/notdefined/aio/_operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/server-endpoint-not-defined/server/endpoint/notdefined/aio/_patch.py b/packages/typespec-python/tests/generated/azure/server-endpoint-not-defined/server/endpoint/notdefined/aio/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/server-endpoint-not-defined/server/endpoint/notdefined/aio/_patch.py +++ b/packages/typespec-python/tests/generated/azure/server-endpoint-not-defined/server/endpoint/notdefined/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/server-path-multiple/server/path/multiple/_operations/_patch.py b/packages/typespec-python/tests/generated/azure/server-path-multiple/server/path/multiple/_operations/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/server-path-multiple/server/path/multiple/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/server-path-multiple/server/path/multiple/_operations/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/server-path-multiple/server/path/multiple/_patch.py b/packages/typespec-python/tests/generated/azure/server-path-multiple/server/path/multiple/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/server-path-multiple/server/path/multiple/_patch.py +++ b/packages/typespec-python/tests/generated/azure/server-path-multiple/server/path/multiple/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/server-path-multiple/server/path/multiple/aio/_operations/_patch.py b/packages/typespec-python/tests/generated/azure/server-path-multiple/server/path/multiple/aio/_operations/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/server-path-multiple/server/path/multiple/aio/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/server-path-multiple/server/path/multiple/aio/_operations/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/server-path-multiple/server/path/multiple/aio/_patch.py b/packages/typespec-python/tests/generated/azure/server-path-multiple/server/path/multiple/aio/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/server-path-multiple/server/path/multiple/aio/_patch.py +++ b/packages/typespec-python/tests/generated/azure/server-path-multiple/server/path/multiple/aio/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/server-path-multiple/server/path/multiple/models/_patch.py b/packages/typespec-python/tests/generated/azure/server-path-multiple/server/path/multiple/models/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/server-path-multiple/server/path/multiple/models/_patch.py +++ b/packages/typespec-python/tests/generated/azure/server-path-multiple/server/path/multiple/models/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/server-path-single/server/path/single/_operations/_patch.py b/packages/typespec-python/tests/generated/azure/server-path-single/server/path/single/_operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/server-path-single/server/path/single/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/server-path-single/server/path/single/_operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/server-path-single/server/path/single/_patch.py b/packages/typespec-python/tests/generated/azure/server-path-single/server/path/single/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/server-path-single/server/path/single/_patch.py +++ b/packages/typespec-python/tests/generated/azure/server-path-single/server/path/single/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/server-path-single/server/path/single/aio/_operations/_patch.py b/packages/typespec-python/tests/generated/azure/server-path-single/server/path/single/aio/_operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/server-path-single/server/path/single/aio/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/server-path-single/server/path/single/aio/_operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/server-path-single/server/path/single/aio/_patch.py b/packages/typespec-python/tests/generated/azure/server-path-single/server/path/single/aio/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/server-path-single/server/path/single/aio/_patch.py +++ b/packages/typespec-python/tests/generated/azure/server-path-single/server/path/single/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/server-versions-not-versioned/server/versions/notversioned/_operations/_patch.py b/packages/typespec-python/tests/generated/azure/server-versions-not-versioned/server/versions/notversioned/_operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/server-versions-not-versioned/server/versions/notversioned/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/server-versions-not-versioned/server/versions/notversioned/_operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/server-versions-not-versioned/server/versions/notversioned/_patch.py b/packages/typespec-python/tests/generated/azure/server-versions-not-versioned/server/versions/notversioned/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/server-versions-not-versioned/server/versions/notversioned/_patch.py +++ b/packages/typespec-python/tests/generated/azure/server-versions-not-versioned/server/versions/notversioned/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/server-versions-not-versioned/server/versions/notversioned/aio/_operations/_patch.py b/packages/typespec-python/tests/generated/azure/server-versions-not-versioned/server/versions/notversioned/aio/_operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/server-versions-not-versioned/server/versions/notversioned/aio/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/server-versions-not-versioned/server/versions/notversioned/aio/_operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/server-versions-not-versioned/server/versions/notversioned/aio/_patch.py b/packages/typespec-python/tests/generated/azure/server-versions-not-versioned/server/versions/notversioned/aio/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/server-versions-not-versioned/server/versions/notversioned/aio/_patch.py +++ b/packages/typespec-python/tests/generated/azure/server-versions-not-versioned/server/versions/notversioned/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/server-versions-versioned/server/versions/versioned/_operations/_patch.py b/packages/typespec-python/tests/generated/azure/server-versions-versioned/server/versions/versioned/_operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/server-versions-versioned/server/versions/versioned/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/server-versions-versioned/server/versions/versioned/_operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/server-versions-versioned/server/versions/versioned/_patch.py b/packages/typespec-python/tests/generated/azure/server-versions-versioned/server/versions/versioned/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/server-versions-versioned/server/versions/versioned/_patch.py +++ b/packages/typespec-python/tests/generated/azure/server-versions-versioned/server/versions/versioned/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/server-versions-versioned/server/versions/versioned/aio/_operations/_patch.py b/packages/typespec-python/tests/generated/azure/server-versions-versioned/server/versions/versioned/aio/_operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/server-versions-versioned/server/versions/versioned/aio/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/server-versions-versioned/server/versions/versioned/aio/_operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/server-versions-versioned/server/versions/versioned/aio/_patch.py b/packages/typespec-python/tests/generated/azure/server-versions-versioned/server/versions/versioned/aio/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/server-versions-versioned/server/versions/versioned/aio/_patch.py +++ b/packages/typespec-python/tests/generated/azure/server-versions-versioned/server/versions/versioned/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/service-multi-service/service/multiservice/_patch.py b/packages/typespec-python/tests/generated/azure/service-multi-service/service/multiservice/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/service-multi-service/service/multiservice/_patch.py +++ b/packages/typespec-python/tests/generated/azure/service-multi-service/service/multiservice/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/service-multi-service/service/multiservice/aio/_patch.py b/packages/typespec-python/tests/generated/azure/service-multi-service/service/multiservice/aio/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/service-multi-service/service/multiservice/aio/_patch.py +++ b/packages/typespec-python/tests/generated/azure/service-multi-service/service/multiservice/aio/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/service-multi-service/service/multiservice/aio/operations/_patch.py b/packages/typespec-python/tests/generated/azure/service-multi-service/service/multiservice/aio/operations/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/service-multi-service/service/multiservice/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/service-multi-service/service/multiservice/aio/operations/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/service-multi-service/service/multiservice/models/_patch.py b/packages/typespec-python/tests/generated/azure/service-multi-service/service/multiservice/models/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/service-multi-service/service/multiservice/models/_patch.py +++ b/packages/typespec-python/tests/generated/azure/service-multi-service/service/multiservice/models/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/service-multi-service/service/multiservice/operations/_patch.py b/packages/typespec-python/tests/generated/azure/service-multi-service/service/multiservice/operations/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/service-multi-service/service/multiservice/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/service-multi-service/service/multiservice/operations/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/service-multiple-services/service/multipleservices/servicea/_patch.py b/packages/typespec-python/tests/generated/azure/service-multiple-services/service/multipleservices/servicea/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/service-multiple-services/service/multipleservices/servicea/_patch.py +++ b/packages/typespec-python/tests/generated/azure/service-multiple-services/service/multipleservices/servicea/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/service-multiple-services/service/multipleservices/servicea/aio/_patch.py b/packages/typespec-python/tests/generated/azure/service-multiple-services/service/multipleservices/servicea/aio/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/service-multiple-services/service/multipleservices/servicea/aio/_patch.py +++ b/packages/typespec-python/tests/generated/azure/service-multiple-services/service/multipleservices/servicea/aio/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/service-multiple-services/service/multipleservices/servicea/aio/operations/_patch.py b/packages/typespec-python/tests/generated/azure/service-multiple-services/service/multipleservices/servicea/aio/operations/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/service-multiple-services/service/multipleservices/servicea/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/service-multiple-services/service/multipleservices/servicea/aio/operations/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/service-multiple-services/service/multipleservices/servicea/models/_patch.py b/packages/typespec-python/tests/generated/azure/service-multiple-services/service/multipleservices/servicea/models/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/service-multiple-services/service/multipleservices/servicea/models/_patch.py +++ b/packages/typespec-python/tests/generated/azure/service-multiple-services/service/multipleservices/servicea/models/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/service-multiple-services/service/multipleservices/servicea/operations/_patch.py b/packages/typespec-python/tests/generated/azure/service-multiple-services/service/multipleservices/servicea/operations/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/service-multiple-services/service/multipleservices/servicea/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/service-multiple-services/service/multipleservices/servicea/operations/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/service-multiple-services/service/multipleservices/servicea/subnamespace/aio/operations/_patch.py b/packages/typespec-python/tests/generated/azure/service-multiple-services/service/multipleservices/servicea/subnamespace/aio/operations/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/service-multiple-services/service/multipleservices/servicea/subnamespace/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/service-multiple-services/service/multipleservices/servicea/subnamespace/aio/operations/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/service-multiple-services/service/multipleservices/servicea/subnamespace/operations/_patch.py b/packages/typespec-python/tests/generated/azure/service-multiple-services/service/multipleservices/servicea/subnamespace/operations/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/service-multiple-services/service/multipleservices/servicea/subnamespace/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/service-multiple-services/service/multipleservices/servicea/subnamespace/operations/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/service-multiple-services/service/multipleservices/serviceb/_patch.py b/packages/typespec-python/tests/generated/azure/service-multiple-services/service/multipleservices/serviceb/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/service-multiple-services/service/multipleservices/serviceb/_patch.py +++ b/packages/typespec-python/tests/generated/azure/service-multiple-services/service/multipleservices/serviceb/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/service-multiple-services/service/multipleservices/serviceb/aio/_patch.py b/packages/typespec-python/tests/generated/azure/service-multiple-services/service/multipleservices/serviceb/aio/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/service-multiple-services/service/multipleservices/serviceb/aio/_patch.py +++ b/packages/typespec-python/tests/generated/azure/service-multiple-services/service/multipleservices/serviceb/aio/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/service-multiple-services/service/multipleservices/serviceb/aio/operations/_patch.py b/packages/typespec-python/tests/generated/azure/service-multiple-services/service/multipleservices/serviceb/aio/operations/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/service-multiple-services/service/multipleservices/serviceb/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/service-multiple-services/service/multipleservices/serviceb/aio/operations/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/service-multiple-services/service/multipleservices/serviceb/models/_patch.py b/packages/typespec-python/tests/generated/azure/service-multiple-services/service/multipleservices/serviceb/models/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/service-multiple-services/service/multipleservices/serviceb/models/_patch.py +++ b/packages/typespec-python/tests/generated/azure/service-multiple-services/service/multipleservices/serviceb/models/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/service-multiple-services/service/multipleservices/serviceb/operations/_patch.py b/packages/typespec-python/tests/generated/azure/service-multiple-services/service/multipleservices/serviceb/operations/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/service-multiple-services/service/multipleservices/serviceb/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/service-multiple-services/service/multipleservices/serviceb/operations/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/service-multiple-services/service/multipleservices/serviceb/subnamespace/aio/operations/_patch.py b/packages/typespec-python/tests/generated/azure/service-multiple-services/service/multipleservices/serviceb/subnamespace/aio/operations/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/service-multiple-services/service/multipleservices/serviceb/subnamespace/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/service-multiple-services/service/multipleservices/serviceb/subnamespace/aio/operations/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/service-multiple-services/service/multipleservices/serviceb/subnamespace/operations/_patch.py b/packages/typespec-python/tests/generated/azure/service-multiple-services/service/multipleservices/serviceb/subnamespace/operations/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/service-multiple-services/service/multipleservices/serviceb/subnamespace/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/service-multiple-services/service/multipleservices/serviceb/subnamespace/operations/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/setuppy-authentication-union/setup.py b/packages/typespec-python/tests/generated/azure/setuppy-authentication-union/setup.py index 617246b2958..2d112fc7b53 100644 --- a/packages/typespec-python/tests/generated/azure/setuppy-authentication-union/setup.py +++ b/packages/typespec-python/tests/generated/azure/setuppy-authentication-union/setup.py @@ -11,7 +11,6 @@ import re from setuptools import setup, find_packages - PACKAGE_NAME = "setuppy-authentication-union" PACKAGE_PPRINT_NAME = "Setuppy Authentication Union" PACKAGE_NAMESPACE = "setuppy.authentication.union" diff --git a/packages/typespec-python/tests/generated/azure/setuppy-authentication-union/setuppy/authentication/union/_operations/_patch.py b/packages/typespec-python/tests/generated/azure/setuppy-authentication-union/setuppy/authentication/union/_operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/setuppy-authentication-union/setuppy/authentication/union/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/setuppy-authentication-union/setuppy/authentication/union/_operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/setuppy-authentication-union/setuppy/authentication/union/_patch.py b/packages/typespec-python/tests/generated/azure/setuppy-authentication-union/setuppy/authentication/union/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/setuppy-authentication-union/setuppy/authentication/union/_patch.py +++ b/packages/typespec-python/tests/generated/azure/setuppy-authentication-union/setuppy/authentication/union/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/setuppy-authentication-union/setuppy/authentication/union/aio/_operations/_patch.py b/packages/typespec-python/tests/generated/azure/setuppy-authentication-union/setuppy/authentication/union/aio/_operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/setuppy-authentication-union/setuppy/authentication/union/aio/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/setuppy-authentication-union/setuppy/authentication/union/aio/_operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/setuppy-authentication-union/setuppy/authentication/union/aio/_patch.py b/packages/typespec-python/tests/generated/azure/setuppy-authentication-union/setuppy/authentication/union/aio/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/setuppy-authentication-union/setuppy/authentication/union/aio/_patch.py +++ b/packages/typespec-python/tests/generated/azure/setuppy-authentication-union/setuppy/authentication/union/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/special-headers-conditional-request/specialheaders/conditionalrequest/_operations/_patch.py b/packages/typespec-python/tests/generated/azure/special-headers-conditional-request/specialheaders/conditionalrequest/_operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/special-headers-conditional-request/specialheaders/conditionalrequest/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/special-headers-conditional-request/specialheaders/conditionalrequest/_operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/special-headers-conditional-request/specialheaders/conditionalrequest/_patch.py b/packages/typespec-python/tests/generated/azure/special-headers-conditional-request/specialheaders/conditionalrequest/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/special-headers-conditional-request/specialheaders/conditionalrequest/_patch.py +++ b/packages/typespec-python/tests/generated/azure/special-headers-conditional-request/specialheaders/conditionalrequest/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/special-headers-conditional-request/specialheaders/conditionalrequest/aio/_operations/_patch.py b/packages/typespec-python/tests/generated/azure/special-headers-conditional-request/specialheaders/conditionalrequest/aio/_operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/special-headers-conditional-request/specialheaders/conditionalrequest/aio/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/special-headers-conditional-request/specialheaders/conditionalrequest/aio/_operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/special-headers-conditional-request/specialheaders/conditionalrequest/aio/_patch.py b/packages/typespec-python/tests/generated/azure/special-headers-conditional-request/specialheaders/conditionalrequest/aio/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/special-headers-conditional-request/specialheaders/conditionalrequest/aio/_patch.py +++ b/packages/typespec-python/tests/generated/azure/special-headers-conditional-request/specialheaders/conditionalrequest/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/special-headers-repeatability/specialheaders/repeatability/_operations/_patch.py b/packages/typespec-python/tests/generated/azure/special-headers-repeatability/specialheaders/repeatability/_operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/special-headers-repeatability/specialheaders/repeatability/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/special-headers-repeatability/specialheaders/repeatability/_operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/special-headers-repeatability/specialheaders/repeatability/_patch.py b/packages/typespec-python/tests/generated/azure/special-headers-repeatability/specialheaders/repeatability/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/special-headers-repeatability/specialheaders/repeatability/_patch.py +++ b/packages/typespec-python/tests/generated/azure/special-headers-repeatability/specialheaders/repeatability/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/special-headers-repeatability/specialheaders/repeatability/aio/_operations/_patch.py b/packages/typespec-python/tests/generated/azure/special-headers-repeatability/specialheaders/repeatability/aio/_operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/special-headers-repeatability/specialheaders/repeatability/aio/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/special-headers-repeatability/specialheaders/repeatability/aio/_operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/special-headers-repeatability/specialheaders/repeatability/aio/_patch.py b/packages/typespec-python/tests/generated/azure/special-headers-repeatability/specialheaders/repeatability/aio/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/special-headers-repeatability/specialheaders/repeatability/aio/_patch.py +++ b/packages/typespec-python/tests/generated/azure/special-headers-repeatability/specialheaders/repeatability/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/special-words/specialwords/_patch.py b/packages/typespec-python/tests/generated/azure/special-words/specialwords/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/special-words/specialwords/_patch.py +++ b/packages/typespec-python/tests/generated/azure/special-words/specialwords/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/special-words/specialwords/aio/_patch.py b/packages/typespec-python/tests/generated/azure/special-words/specialwords/aio/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/special-words/specialwords/aio/_patch.py +++ b/packages/typespec-python/tests/generated/azure/special-words/specialwords/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/special-words/specialwords/aio/operations/_patch.py b/packages/typespec-python/tests/generated/azure/special-words/specialwords/aio/operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/special-words/specialwords/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/special-words/specialwords/aio/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/special-words/specialwords/models/_patch.py b/packages/typespec-python/tests/generated/azure/special-words/specialwords/models/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/special-words/specialwords/models/_patch.py +++ b/packages/typespec-python/tests/generated/azure/special-words/specialwords/models/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/special-words/specialwords/operations/_patch.py b/packages/typespec-python/tests/generated/azure/special-words/specialwords/operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/special-words/specialwords/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/special-words/specialwords/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/specs-documentation/specs/documentation/_patch.py b/packages/typespec-python/tests/generated/azure/specs-documentation/specs/documentation/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/specs-documentation/specs/documentation/_patch.py +++ b/packages/typespec-python/tests/generated/azure/specs-documentation/specs/documentation/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/specs-documentation/specs/documentation/aio/_patch.py b/packages/typespec-python/tests/generated/azure/specs-documentation/specs/documentation/aio/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/specs-documentation/specs/documentation/aio/_patch.py +++ b/packages/typespec-python/tests/generated/azure/specs-documentation/specs/documentation/aio/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/specs-documentation/specs/documentation/aio/operations/_patch.py b/packages/typespec-python/tests/generated/azure/specs-documentation/specs/documentation/aio/operations/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/specs-documentation/specs/documentation/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/specs-documentation/specs/documentation/aio/operations/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/specs-documentation/specs/documentation/models/_patch.py b/packages/typespec-python/tests/generated/azure/specs-documentation/specs/documentation/models/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/specs-documentation/specs/documentation/models/_patch.py +++ b/packages/typespec-python/tests/generated/azure/specs-documentation/specs/documentation/models/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/specs-documentation/specs/documentation/operations/_patch.py b/packages/typespec-python/tests/generated/azure/specs-documentation/specs/documentation/operations/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/specs-documentation/specs/documentation/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/specs-documentation/specs/documentation/operations/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/streaming-jsonl/streaming/jsonl/_patch.py b/packages/typespec-python/tests/generated/azure/streaming-jsonl/streaming/jsonl/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/streaming-jsonl/streaming/jsonl/_patch.py +++ b/packages/typespec-python/tests/generated/azure/streaming-jsonl/streaming/jsonl/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/streaming-jsonl/streaming/jsonl/aio/_patch.py b/packages/typespec-python/tests/generated/azure/streaming-jsonl/streaming/jsonl/aio/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/streaming-jsonl/streaming/jsonl/aio/_patch.py +++ b/packages/typespec-python/tests/generated/azure/streaming-jsonl/streaming/jsonl/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/streaming-jsonl/streaming/jsonl/basic/aio/operations/_patch.py b/packages/typespec-python/tests/generated/azure/streaming-jsonl/streaming/jsonl/basic/aio/operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/streaming-jsonl/streaming/jsonl/basic/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/streaming-jsonl/streaming/jsonl/basic/aio/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/streaming-jsonl/streaming/jsonl/basic/models/_patch.py b/packages/typespec-python/tests/generated/azure/streaming-jsonl/streaming/jsonl/basic/models/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/streaming-jsonl/streaming/jsonl/basic/models/_patch.py +++ b/packages/typespec-python/tests/generated/azure/streaming-jsonl/streaming/jsonl/basic/models/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/streaming-jsonl/streaming/jsonl/basic/operations/_patch.py b/packages/typespec-python/tests/generated/azure/streaming-jsonl/streaming/jsonl/basic/operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/streaming-jsonl/streaming/jsonl/basic/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/streaming-jsonl/streaming/jsonl/basic/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/typetest-array/typetest/array/_patch.py b/packages/typespec-python/tests/generated/azure/typetest-array/typetest/array/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/typetest-array/typetest/array/_patch.py +++ b/packages/typespec-python/tests/generated/azure/typetest-array/typetest/array/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/typetest-array/typetest/array/aio/_patch.py b/packages/typespec-python/tests/generated/azure/typetest-array/typetest/array/aio/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/typetest-array/typetest/array/aio/_patch.py +++ b/packages/typespec-python/tests/generated/azure/typetest-array/typetest/array/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/typetest-array/typetest/array/aio/operations/_patch.py b/packages/typespec-python/tests/generated/azure/typetest-array/typetest/array/aio/operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/typetest-array/typetest/array/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/typetest-array/typetest/array/aio/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/typetest-array/typetest/array/models/_patch.py b/packages/typespec-python/tests/generated/azure/typetest-array/typetest/array/models/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/typetest-array/typetest/array/models/_patch.py +++ b/packages/typespec-python/tests/generated/azure/typetest-array/typetest/array/models/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/typetest-array/typetest/array/operations/_patch.py b/packages/typespec-python/tests/generated/azure/typetest-array/typetest/array/operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/typetest-array/typetest/array/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/typetest-array/typetest/array/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/typetest-dictionary/typetest/dictionary/_patch.py b/packages/typespec-python/tests/generated/azure/typetest-dictionary/typetest/dictionary/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/typetest-dictionary/typetest/dictionary/_patch.py +++ b/packages/typespec-python/tests/generated/azure/typetest-dictionary/typetest/dictionary/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/typetest-dictionary/typetest/dictionary/aio/_patch.py b/packages/typespec-python/tests/generated/azure/typetest-dictionary/typetest/dictionary/aio/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/typetest-dictionary/typetest/dictionary/aio/_patch.py +++ b/packages/typespec-python/tests/generated/azure/typetest-dictionary/typetest/dictionary/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/typetest-dictionary/typetest/dictionary/aio/operations/_patch.py b/packages/typespec-python/tests/generated/azure/typetest-dictionary/typetest/dictionary/aio/operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/typetest-dictionary/typetest/dictionary/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/typetest-dictionary/typetest/dictionary/aio/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/typetest-dictionary/typetest/dictionary/models/_patch.py b/packages/typespec-python/tests/generated/azure/typetest-dictionary/typetest/dictionary/models/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/typetest-dictionary/typetest/dictionary/models/_patch.py +++ b/packages/typespec-python/tests/generated/azure/typetest-dictionary/typetest/dictionary/models/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/typetest-dictionary/typetest/dictionary/operations/_patch.py b/packages/typespec-python/tests/generated/azure/typetest-dictionary/typetest/dictionary/operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/typetest-dictionary/typetest/dictionary/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/typetest-dictionary/typetest/dictionary/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/typetest-discriminatedunion/typetest/discriminatedunion/_patch.py b/packages/typespec-python/tests/generated/azure/typetest-discriminatedunion/typetest/discriminatedunion/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/typetest-discriminatedunion/typetest/discriminatedunion/_patch.py +++ b/packages/typespec-python/tests/generated/azure/typetest-discriminatedunion/typetest/discriminatedunion/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/typetest-discriminatedunion/typetest/discriminatedunion/aio/_patch.py b/packages/typespec-python/tests/generated/azure/typetest-discriminatedunion/typetest/discriminatedunion/aio/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/typetest-discriminatedunion/typetest/discriminatedunion/aio/_patch.py +++ b/packages/typespec-python/tests/generated/azure/typetest-discriminatedunion/typetest/discriminatedunion/aio/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/typetest-discriminatedunion/typetest/discriminatedunion/aio/operations/_patch.py b/packages/typespec-python/tests/generated/azure/typetest-discriminatedunion/typetest/discriminatedunion/aio/operations/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/typetest-discriminatedunion/typetest/discriminatedunion/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/typetest-discriminatedunion/typetest/discriminatedunion/aio/operations/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/typetest-discriminatedunion/typetest/discriminatedunion/models/_patch.py b/packages/typespec-python/tests/generated/azure/typetest-discriminatedunion/typetest/discriminatedunion/models/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/typetest-discriminatedunion/typetest/discriminatedunion/models/_patch.py +++ b/packages/typespec-python/tests/generated/azure/typetest-discriminatedunion/typetest/discriminatedunion/models/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/typetest-discriminatedunion/typetest/discriminatedunion/operations/_patch.py b/packages/typespec-python/tests/generated/azure/typetest-discriminatedunion/typetest/discriminatedunion/operations/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/typetest-discriminatedunion/typetest/discriminatedunion/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/typetest-discriminatedunion/typetest/discriminatedunion/operations/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/typetest-enum-extensible/typetest/enum/extensible/_patch.py b/packages/typespec-python/tests/generated/azure/typetest-enum-extensible/typetest/enum/extensible/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/typetest-enum-extensible/typetest/enum/extensible/_patch.py +++ b/packages/typespec-python/tests/generated/azure/typetest-enum-extensible/typetest/enum/extensible/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/typetest-enum-extensible/typetest/enum/extensible/aio/_patch.py b/packages/typespec-python/tests/generated/azure/typetest-enum-extensible/typetest/enum/extensible/aio/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/typetest-enum-extensible/typetest/enum/extensible/aio/_patch.py +++ b/packages/typespec-python/tests/generated/azure/typetest-enum-extensible/typetest/enum/extensible/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/typetest-enum-extensible/typetest/enum/extensible/aio/operations/_patch.py b/packages/typespec-python/tests/generated/azure/typetest-enum-extensible/typetest/enum/extensible/aio/operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/typetest-enum-extensible/typetest/enum/extensible/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/typetest-enum-extensible/typetest/enum/extensible/aio/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/typetest-enum-extensible/typetest/enum/extensible/models/_patch.py b/packages/typespec-python/tests/generated/azure/typetest-enum-extensible/typetest/enum/extensible/models/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/typetest-enum-extensible/typetest/enum/extensible/models/_patch.py +++ b/packages/typespec-python/tests/generated/azure/typetest-enum-extensible/typetest/enum/extensible/models/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/typetest-enum-extensible/typetest/enum/extensible/operations/_patch.py b/packages/typespec-python/tests/generated/azure/typetest-enum-extensible/typetest/enum/extensible/operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/typetest-enum-extensible/typetest/enum/extensible/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/typetest-enum-extensible/typetest/enum/extensible/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/typetest-enum-fixed/typetest/enum/fixed/_patch.py b/packages/typespec-python/tests/generated/azure/typetest-enum-fixed/typetest/enum/fixed/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/typetest-enum-fixed/typetest/enum/fixed/_patch.py +++ b/packages/typespec-python/tests/generated/azure/typetest-enum-fixed/typetest/enum/fixed/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/typetest-enum-fixed/typetest/enum/fixed/aio/_patch.py b/packages/typespec-python/tests/generated/azure/typetest-enum-fixed/typetest/enum/fixed/aio/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/typetest-enum-fixed/typetest/enum/fixed/aio/_patch.py +++ b/packages/typespec-python/tests/generated/azure/typetest-enum-fixed/typetest/enum/fixed/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/typetest-enum-fixed/typetest/enum/fixed/aio/operations/_patch.py b/packages/typespec-python/tests/generated/azure/typetest-enum-fixed/typetest/enum/fixed/aio/operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/typetest-enum-fixed/typetest/enum/fixed/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/typetest-enum-fixed/typetest/enum/fixed/aio/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/typetest-enum-fixed/typetest/enum/fixed/models/_patch.py b/packages/typespec-python/tests/generated/azure/typetest-enum-fixed/typetest/enum/fixed/models/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/typetest-enum-fixed/typetest/enum/fixed/models/_patch.py +++ b/packages/typespec-python/tests/generated/azure/typetest-enum-fixed/typetest/enum/fixed/models/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/typetest-enum-fixed/typetest/enum/fixed/operations/_patch.py b/packages/typespec-python/tests/generated/azure/typetest-enum-fixed/typetest/enum/fixed/operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/typetest-enum-fixed/typetest/enum/fixed/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/typetest-enum-fixed/typetest/enum/fixed/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/typetest-model-empty/typetest/model/empty/_operations/_patch.py b/packages/typespec-python/tests/generated/azure/typetest-model-empty/typetest/model/empty/_operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/typetest-model-empty/typetest/model/empty/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/typetest-model-empty/typetest/model/empty/_operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/typetest-model-empty/typetest/model/empty/_patch.py b/packages/typespec-python/tests/generated/azure/typetest-model-empty/typetest/model/empty/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/typetest-model-empty/typetest/model/empty/_patch.py +++ b/packages/typespec-python/tests/generated/azure/typetest-model-empty/typetest/model/empty/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/typetest-model-empty/typetest/model/empty/aio/_operations/_patch.py b/packages/typespec-python/tests/generated/azure/typetest-model-empty/typetest/model/empty/aio/_operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/typetest-model-empty/typetest/model/empty/aio/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/typetest-model-empty/typetest/model/empty/aio/_operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/typetest-model-empty/typetest/model/empty/aio/_patch.py b/packages/typespec-python/tests/generated/azure/typetest-model-empty/typetest/model/empty/aio/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/typetest-model-empty/typetest/model/empty/aio/_patch.py +++ b/packages/typespec-python/tests/generated/azure/typetest-model-empty/typetest/model/empty/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/typetest-model-empty/typetest/model/empty/models/_patch.py b/packages/typespec-python/tests/generated/azure/typetest-model-empty/typetest/model/empty/models/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/typetest-model-empty/typetest/model/empty/models/_patch.py +++ b/packages/typespec-python/tests/generated/azure/typetest-model-empty/typetest/model/empty/models/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/typetest-model-enumdiscriminator/typetest/model/enumdiscriminator/_operations/_patch.py b/packages/typespec-python/tests/generated/azure/typetest-model-enumdiscriminator/typetest/model/enumdiscriminator/_operations/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/typetest-model-enumdiscriminator/typetest/model/enumdiscriminator/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/typetest-model-enumdiscriminator/typetest/model/enumdiscriminator/_operations/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/typetest-model-enumdiscriminator/typetest/model/enumdiscriminator/_patch.py b/packages/typespec-python/tests/generated/azure/typetest-model-enumdiscriminator/typetest/model/enumdiscriminator/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/typetest-model-enumdiscriminator/typetest/model/enumdiscriminator/_patch.py +++ b/packages/typespec-python/tests/generated/azure/typetest-model-enumdiscriminator/typetest/model/enumdiscriminator/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/typetest-model-enumdiscriminator/typetest/model/enumdiscriminator/aio/_operations/_patch.py b/packages/typespec-python/tests/generated/azure/typetest-model-enumdiscriminator/typetest/model/enumdiscriminator/aio/_operations/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/typetest-model-enumdiscriminator/typetest/model/enumdiscriminator/aio/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/typetest-model-enumdiscriminator/typetest/model/enumdiscriminator/aio/_operations/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/typetest-model-enumdiscriminator/typetest/model/enumdiscriminator/aio/_patch.py b/packages/typespec-python/tests/generated/azure/typetest-model-enumdiscriminator/typetest/model/enumdiscriminator/aio/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/typetest-model-enumdiscriminator/typetest/model/enumdiscriminator/aio/_patch.py +++ b/packages/typespec-python/tests/generated/azure/typetest-model-enumdiscriminator/typetest/model/enumdiscriminator/aio/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/typetest-model-enumdiscriminator/typetest/model/enumdiscriminator/models/_patch.py b/packages/typespec-python/tests/generated/azure/typetest-model-enumdiscriminator/typetest/model/enumdiscriminator/models/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/typetest-model-enumdiscriminator/typetest/model/enumdiscriminator/models/_patch.py +++ b/packages/typespec-python/tests/generated/azure/typetest-model-enumdiscriminator/typetest/model/enumdiscriminator/models/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/typetest-model-nesteddiscriminator/typetest/model/nesteddiscriminator/_operations/_patch.py b/packages/typespec-python/tests/generated/azure/typetest-model-nesteddiscriminator/typetest/model/nesteddiscriminator/_operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/typetest-model-nesteddiscriminator/typetest/model/nesteddiscriminator/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/typetest-model-nesteddiscriminator/typetest/model/nesteddiscriminator/_operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/typetest-model-nesteddiscriminator/typetest/model/nesteddiscriminator/_patch.py b/packages/typespec-python/tests/generated/azure/typetest-model-nesteddiscriminator/typetest/model/nesteddiscriminator/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/typetest-model-nesteddiscriminator/typetest/model/nesteddiscriminator/_patch.py +++ b/packages/typespec-python/tests/generated/azure/typetest-model-nesteddiscriminator/typetest/model/nesteddiscriminator/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/typetest-model-nesteddiscriminator/typetest/model/nesteddiscriminator/aio/_operations/_patch.py b/packages/typespec-python/tests/generated/azure/typetest-model-nesteddiscriminator/typetest/model/nesteddiscriminator/aio/_operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/typetest-model-nesteddiscriminator/typetest/model/nesteddiscriminator/aio/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/typetest-model-nesteddiscriminator/typetest/model/nesteddiscriminator/aio/_operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/typetest-model-nesteddiscriminator/typetest/model/nesteddiscriminator/aio/_patch.py b/packages/typespec-python/tests/generated/azure/typetest-model-nesteddiscriminator/typetest/model/nesteddiscriminator/aio/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/typetest-model-nesteddiscriminator/typetest/model/nesteddiscriminator/aio/_patch.py +++ b/packages/typespec-python/tests/generated/azure/typetest-model-nesteddiscriminator/typetest/model/nesteddiscriminator/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/typetest-model-nesteddiscriminator/typetest/model/nesteddiscriminator/models/_patch.py b/packages/typespec-python/tests/generated/azure/typetest-model-nesteddiscriminator/typetest/model/nesteddiscriminator/models/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/typetest-model-nesteddiscriminator/typetest/model/nesteddiscriminator/models/_patch.py +++ b/packages/typespec-python/tests/generated/azure/typetest-model-nesteddiscriminator/typetest/model/nesteddiscriminator/models/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/typetest-model-notdiscriminated/typetest/model/notdiscriminated/_operations/_patch.py b/packages/typespec-python/tests/generated/azure/typetest-model-notdiscriminated/typetest/model/notdiscriminated/_operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/typetest-model-notdiscriminated/typetest/model/notdiscriminated/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/typetest-model-notdiscriminated/typetest/model/notdiscriminated/_operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/typetest-model-notdiscriminated/typetest/model/notdiscriminated/_patch.py b/packages/typespec-python/tests/generated/azure/typetest-model-notdiscriminated/typetest/model/notdiscriminated/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/typetest-model-notdiscriminated/typetest/model/notdiscriminated/_patch.py +++ b/packages/typespec-python/tests/generated/azure/typetest-model-notdiscriminated/typetest/model/notdiscriminated/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/typetest-model-notdiscriminated/typetest/model/notdiscriminated/aio/_operations/_patch.py b/packages/typespec-python/tests/generated/azure/typetest-model-notdiscriminated/typetest/model/notdiscriminated/aio/_operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/typetest-model-notdiscriminated/typetest/model/notdiscriminated/aio/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/typetest-model-notdiscriminated/typetest/model/notdiscriminated/aio/_operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/typetest-model-notdiscriminated/typetest/model/notdiscriminated/aio/_patch.py b/packages/typespec-python/tests/generated/azure/typetest-model-notdiscriminated/typetest/model/notdiscriminated/aio/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/typetest-model-notdiscriminated/typetest/model/notdiscriminated/aio/_patch.py +++ b/packages/typespec-python/tests/generated/azure/typetest-model-notdiscriminated/typetest/model/notdiscriminated/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/typetest-model-notdiscriminated/typetest/model/notdiscriminated/models/_patch.py b/packages/typespec-python/tests/generated/azure/typetest-model-notdiscriminated/typetest/model/notdiscriminated/models/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/typetest-model-notdiscriminated/typetest/model/notdiscriminated/models/_patch.py +++ b/packages/typespec-python/tests/generated/azure/typetest-model-notdiscriminated/typetest/model/notdiscriminated/models/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/typetest-model-recursive/typetest/model/recursive/_operations/_patch.py b/packages/typespec-python/tests/generated/azure/typetest-model-recursive/typetest/model/recursive/_operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/typetest-model-recursive/typetest/model/recursive/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/typetest-model-recursive/typetest/model/recursive/_operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/typetest-model-recursive/typetest/model/recursive/_patch.py b/packages/typespec-python/tests/generated/azure/typetest-model-recursive/typetest/model/recursive/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/typetest-model-recursive/typetest/model/recursive/_patch.py +++ b/packages/typespec-python/tests/generated/azure/typetest-model-recursive/typetest/model/recursive/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/typetest-model-recursive/typetest/model/recursive/aio/_operations/_patch.py b/packages/typespec-python/tests/generated/azure/typetest-model-recursive/typetest/model/recursive/aio/_operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/typetest-model-recursive/typetest/model/recursive/aio/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/typetest-model-recursive/typetest/model/recursive/aio/_operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/typetest-model-recursive/typetest/model/recursive/aio/_patch.py b/packages/typespec-python/tests/generated/azure/typetest-model-recursive/typetest/model/recursive/aio/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/typetest-model-recursive/typetest/model/recursive/aio/_patch.py +++ b/packages/typespec-python/tests/generated/azure/typetest-model-recursive/typetest/model/recursive/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/typetest-model-recursive/typetest/model/recursive/models/_patch.py b/packages/typespec-python/tests/generated/azure/typetest-model-recursive/typetest/model/recursive/models/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/typetest-model-recursive/typetest/model/recursive/models/_patch.py +++ b/packages/typespec-python/tests/generated/azure/typetest-model-recursive/typetest/model/recursive/models/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/typetest-model-singlediscriminator/typetest/model/singlediscriminator/_operations/_patch.py b/packages/typespec-python/tests/generated/azure/typetest-model-singlediscriminator/typetest/model/singlediscriminator/_operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/typetest-model-singlediscriminator/typetest/model/singlediscriminator/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/typetest-model-singlediscriminator/typetest/model/singlediscriminator/_operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/typetest-model-singlediscriminator/typetest/model/singlediscriminator/_patch.py b/packages/typespec-python/tests/generated/azure/typetest-model-singlediscriminator/typetest/model/singlediscriminator/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/typetest-model-singlediscriminator/typetest/model/singlediscriminator/_patch.py +++ b/packages/typespec-python/tests/generated/azure/typetest-model-singlediscriminator/typetest/model/singlediscriminator/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/typetest-model-singlediscriminator/typetest/model/singlediscriminator/aio/_operations/_patch.py b/packages/typespec-python/tests/generated/azure/typetest-model-singlediscriminator/typetest/model/singlediscriminator/aio/_operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/typetest-model-singlediscriminator/typetest/model/singlediscriminator/aio/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/typetest-model-singlediscriminator/typetest/model/singlediscriminator/aio/_operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/typetest-model-singlediscriminator/typetest/model/singlediscriminator/aio/_patch.py b/packages/typespec-python/tests/generated/azure/typetest-model-singlediscriminator/typetest/model/singlediscriminator/aio/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/typetest-model-singlediscriminator/typetest/model/singlediscriminator/aio/_patch.py +++ b/packages/typespec-python/tests/generated/azure/typetest-model-singlediscriminator/typetest/model/singlediscriminator/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/typetest-model-singlediscriminator/typetest/model/singlediscriminator/models/_patch.py b/packages/typespec-python/tests/generated/azure/typetest-model-singlediscriminator/typetest/model/singlediscriminator/models/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/typetest-model-singlediscriminator/typetest/model/singlediscriminator/models/_patch.py +++ b/packages/typespec-python/tests/generated/azure/typetest-model-singlediscriminator/typetest/model/singlediscriminator/models/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/typetest-model-usage/typetest/model/usage/_operations/_patch.py b/packages/typespec-python/tests/generated/azure/typetest-model-usage/typetest/model/usage/_operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/typetest-model-usage/typetest/model/usage/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/typetest-model-usage/typetest/model/usage/_operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/typetest-model-usage/typetest/model/usage/_patch.py b/packages/typespec-python/tests/generated/azure/typetest-model-usage/typetest/model/usage/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/typetest-model-usage/typetest/model/usage/_patch.py +++ b/packages/typespec-python/tests/generated/azure/typetest-model-usage/typetest/model/usage/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/typetest-model-usage/typetest/model/usage/aio/_operations/_patch.py b/packages/typespec-python/tests/generated/azure/typetest-model-usage/typetest/model/usage/aio/_operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/typetest-model-usage/typetest/model/usage/aio/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/typetest-model-usage/typetest/model/usage/aio/_operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/typetest-model-usage/typetest/model/usage/aio/_patch.py b/packages/typespec-python/tests/generated/azure/typetest-model-usage/typetest/model/usage/aio/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/typetest-model-usage/typetest/model/usage/aio/_patch.py +++ b/packages/typespec-python/tests/generated/azure/typetest-model-usage/typetest/model/usage/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/typetest-model-usage/typetest/model/usage/models/_patch.py b/packages/typespec-python/tests/generated/azure/typetest-model-usage/typetest/model/usage/models/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/typetest-model-usage/typetest/model/usage/models/_patch.py +++ b/packages/typespec-python/tests/generated/azure/typetest-model-usage/typetest/model/usage/models/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/typetest-model-visibility/typetest/model/visibility/_operations/_patch.py b/packages/typespec-python/tests/generated/azure/typetest-model-visibility/typetest/model/visibility/_operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/typetest-model-visibility/typetest/model/visibility/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/typetest-model-visibility/typetest/model/visibility/_operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/typetest-model-visibility/typetest/model/visibility/_patch.py b/packages/typespec-python/tests/generated/azure/typetest-model-visibility/typetest/model/visibility/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/typetest-model-visibility/typetest/model/visibility/_patch.py +++ b/packages/typespec-python/tests/generated/azure/typetest-model-visibility/typetest/model/visibility/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/typetest-model-visibility/typetest/model/visibility/aio/_operations/_patch.py b/packages/typespec-python/tests/generated/azure/typetest-model-visibility/typetest/model/visibility/aio/_operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/typetest-model-visibility/typetest/model/visibility/aio/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/typetest-model-visibility/typetest/model/visibility/aio/_operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/typetest-model-visibility/typetest/model/visibility/aio/_patch.py b/packages/typespec-python/tests/generated/azure/typetest-model-visibility/typetest/model/visibility/aio/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/typetest-model-visibility/typetest/model/visibility/aio/_patch.py +++ b/packages/typespec-python/tests/generated/azure/typetest-model-visibility/typetest/model/visibility/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/typetest-model-visibility/typetest/model/visibility/models/_patch.py b/packages/typespec-python/tests/generated/azure/typetest-model-visibility/typetest/model/visibility/models/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/typetest-model-visibility/typetest/model/visibility/models/_patch.py +++ b/packages/typespec-python/tests/generated/azure/typetest-model-visibility/typetest/model/visibility/models/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/typetest-property-additionalproperties/typetest/property/additionalproperties/_patch.py b/packages/typespec-python/tests/generated/azure/typetest-property-additionalproperties/typetest/property/additionalproperties/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/typetest-property-additionalproperties/typetest/property/additionalproperties/_patch.py +++ b/packages/typespec-python/tests/generated/azure/typetest-property-additionalproperties/typetest/property/additionalproperties/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/typetest-property-additionalproperties/typetest/property/additionalproperties/aio/_patch.py b/packages/typespec-python/tests/generated/azure/typetest-property-additionalproperties/typetest/property/additionalproperties/aio/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/typetest-property-additionalproperties/typetest/property/additionalproperties/aio/_patch.py +++ b/packages/typespec-python/tests/generated/azure/typetest-property-additionalproperties/typetest/property/additionalproperties/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/typetest-property-additionalproperties/typetest/property/additionalproperties/aio/operations/_patch.py b/packages/typespec-python/tests/generated/azure/typetest-property-additionalproperties/typetest/property/additionalproperties/aio/operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/typetest-property-additionalproperties/typetest/property/additionalproperties/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/typetest-property-additionalproperties/typetest/property/additionalproperties/aio/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/typetest-property-additionalproperties/typetest/property/additionalproperties/models/_patch.py b/packages/typespec-python/tests/generated/azure/typetest-property-additionalproperties/typetest/property/additionalproperties/models/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/typetest-property-additionalproperties/typetest/property/additionalproperties/models/_patch.py +++ b/packages/typespec-python/tests/generated/azure/typetest-property-additionalproperties/typetest/property/additionalproperties/models/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/typetest-property-additionalproperties/typetest/property/additionalproperties/operations/_patch.py b/packages/typespec-python/tests/generated/azure/typetest-property-additionalproperties/typetest/property/additionalproperties/operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/typetest-property-additionalproperties/typetest/property/additionalproperties/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/typetest-property-additionalproperties/typetest/property/additionalproperties/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/typetest-property-nullable/typetest/property/nullable/_patch.py b/packages/typespec-python/tests/generated/azure/typetest-property-nullable/typetest/property/nullable/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/typetest-property-nullable/typetest/property/nullable/_patch.py +++ b/packages/typespec-python/tests/generated/azure/typetest-property-nullable/typetest/property/nullable/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/typetest-property-nullable/typetest/property/nullable/aio/_patch.py b/packages/typespec-python/tests/generated/azure/typetest-property-nullable/typetest/property/nullable/aio/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/typetest-property-nullable/typetest/property/nullable/aio/_patch.py +++ b/packages/typespec-python/tests/generated/azure/typetest-property-nullable/typetest/property/nullable/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/typetest-property-nullable/typetest/property/nullable/aio/operations/_patch.py b/packages/typespec-python/tests/generated/azure/typetest-property-nullable/typetest/property/nullable/aio/operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/typetest-property-nullable/typetest/property/nullable/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/typetest-property-nullable/typetest/property/nullable/aio/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/typetest-property-nullable/typetest/property/nullable/models/_patch.py b/packages/typespec-python/tests/generated/azure/typetest-property-nullable/typetest/property/nullable/models/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/typetest-property-nullable/typetest/property/nullable/models/_patch.py +++ b/packages/typespec-python/tests/generated/azure/typetest-property-nullable/typetest/property/nullable/models/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/typetest-property-nullable/typetest/property/nullable/operations/_patch.py b/packages/typespec-python/tests/generated/azure/typetest-property-nullable/typetest/property/nullable/operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/typetest-property-nullable/typetest/property/nullable/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/typetest-property-nullable/typetest/property/nullable/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/typetest-property-optional/typetest/property/optional/_patch.py b/packages/typespec-python/tests/generated/azure/typetest-property-optional/typetest/property/optional/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/typetest-property-optional/typetest/property/optional/_patch.py +++ b/packages/typespec-python/tests/generated/azure/typetest-property-optional/typetest/property/optional/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/typetest-property-optional/typetest/property/optional/aio/_patch.py b/packages/typespec-python/tests/generated/azure/typetest-property-optional/typetest/property/optional/aio/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/typetest-property-optional/typetest/property/optional/aio/_patch.py +++ b/packages/typespec-python/tests/generated/azure/typetest-property-optional/typetest/property/optional/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/typetest-property-optional/typetest/property/optional/aio/operations/_patch.py b/packages/typespec-python/tests/generated/azure/typetest-property-optional/typetest/property/optional/aio/operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/typetest-property-optional/typetest/property/optional/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/typetest-property-optional/typetest/property/optional/aio/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/typetest-property-optional/typetest/property/optional/models/_patch.py b/packages/typespec-python/tests/generated/azure/typetest-property-optional/typetest/property/optional/models/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/typetest-property-optional/typetest/property/optional/models/_patch.py +++ b/packages/typespec-python/tests/generated/azure/typetest-property-optional/typetest/property/optional/models/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/typetest-property-optional/typetest/property/optional/operations/_patch.py b/packages/typespec-python/tests/generated/azure/typetest-property-optional/typetest/property/optional/operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/typetest-property-optional/typetest/property/optional/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/typetest-property-optional/typetest/property/optional/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/typetest-property-valuetypes/typetest/property/valuetypes/_patch.py b/packages/typespec-python/tests/generated/azure/typetest-property-valuetypes/typetest/property/valuetypes/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/typetest-property-valuetypes/typetest/property/valuetypes/_patch.py +++ b/packages/typespec-python/tests/generated/azure/typetest-property-valuetypes/typetest/property/valuetypes/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/typetest-property-valuetypes/typetest/property/valuetypes/aio/_patch.py b/packages/typespec-python/tests/generated/azure/typetest-property-valuetypes/typetest/property/valuetypes/aio/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/typetest-property-valuetypes/typetest/property/valuetypes/aio/_patch.py +++ b/packages/typespec-python/tests/generated/azure/typetest-property-valuetypes/typetest/property/valuetypes/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/typetest-property-valuetypes/typetest/property/valuetypes/aio/operations/_patch.py b/packages/typespec-python/tests/generated/azure/typetest-property-valuetypes/typetest/property/valuetypes/aio/operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/typetest-property-valuetypes/typetest/property/valuetypes/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/typetest-property-valuetypes/typetest/property/valuetypes/aio/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/typetest-property-valuetypes/typetest/property/valuetypes/models/_patch.py b/packages/typespec-python/tests/generated/azure/typetest-property-valuetypes/typetest/property/valuetypes/models/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/typetest-property-valuetypes/typetest/property/valuetypes/models/_patch.py +++ b/packages/typespec-python/tests/generated/azure/typetest-property-valuetypes/typetest/property/valuetypes/models/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/typetest-property-valuetypes/typetest/property/valuetypes/operations/_patch.py b/packages/typespec-python/tests/generated/azure/typetest-property-valuetypes/typetest/property/valuetypes/operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/typetest-property-valuetypes/typetest/property/valuetypes/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/typetest-property-valuetypes/typetest/property/valuetypes/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/typetest-scalar/typetest/scalar/_patch.py b/packages/typespec-python/tests/generated/azure/typetest-scalar/typetest/scalar/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/typetest-scalar/typetest/scalar/_patch.py +++ b/packages/typespec-python/tests/generated/azure/typetest-scalar/typetest/scalar/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/typetest-scalar/typetest/scalar/aio/_patch.py b/packages/typespec-python/tests/generated/azure/typetest-scalar/typetest/scalar/aio/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/typetest-scalar/typetest/scalar/aio/_patch.py +++ b/packages/typespec-python/tests/generated/azure/typetest-scalar/typetest/scalar/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/typetest-scalar/typetest/scalar/aio/operations/_patch.py b/packages/typespec-python/tests/generated/azure/typetest-scalar/typetest/scalar/aio/operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/typetest-scalar/typetest/scalar/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/typetest-scalar/typetest/scalar/aio/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/typetest-scalar/typetest/scalar/operations/_patch.py b/packages/typespec-python/tests/generated/azure/typetest-scalar/typetest/scalar/operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/typetest-scalar/typetest/scalar/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/typetest-scalar/typetest/scalar/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/typetest-union/typetest/union/_patch.py b/packages/typespec-python/tests/generated/azure/typetest-union/typetest/union/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/typetest-union/typetest/union/_patch.py +++ b/packages/typespec-python/tests/generated/azure/typetest-union/typetest/union/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/typetest-union/typetest/union/aio/_patch.py b/packages/typespec-python/tests/generated/azure/typetest-union/typetest/union/aio/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/typetest-union/typetest/union/aio/_patch.py +++ b/packages/typespec-python/tests/generated/azure/typetest-union/typetest/union/aio/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/typetest-union/typetest/union/aio/operations/_patch.py b/packages/typespec-python/tests/generated/azure/typetest-union/typetest/union/aio/operations/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/typetest-union/typetest/union/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/typetest-union/typetest/union/aio/operations/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/typetest-union/typetest/union/models/_patch.py b/packages/typespec-python/tests/generated/azure/typetest-union/typetest/union/models/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/typetest-union/typetest/union/models/_patch.py +++ b/packages/typespec-python/tests/generated/azure/typetest-union/typetest/union/models/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/typetest-union/typetest/union/operations/_patch.py b/packages/typespec-python/tests/generated/azure/typetest-union/typetest/union/operations/_patch.py index 87676c65a8f..ea765788358 100644 --- a/packages/typespec-python/tests/generated/azure/typetest-union/typetest/union/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/typetest-union/typetest/union/operations/_patch.py @@ -8,7 +8,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/versioning-added/versioning/added/_patch.py b/packages/typespec-python/tests/generated/azure/versioning-added/versioning/added/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/versioning-added/versioning/added/_patch.py +++ b/packages/typespec-python/tests/generated/azure/versioning-added/versioning/added/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/versioning-added/versioning/added/aio/_patch.py b/packages/typespec-python/tests/generated/azure/versioning-added/versioning/added/aio/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/versioning-added/versioning/added/aio/_patch.py +++ b/packages/typespec-python/tests/generated/azure/versioning-added/versioning/added/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/versioning-added/versioning/added/aio/operations/_patch.py b/packages/typespec-python/tests/generated/azure/versioning-added/versioning/added/aio/operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/versioning-added/versioning/added/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/versioning-added/versioning/added/aio/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/versioning-added/versioning/added/models/_patch.py b/packages/typespec-python/tests/generated/azure/versioning-added/versioning/added/models/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/versioning-added/versioning/added/models/_patch.py +++ b/packages/typespec-python/tests/generated/azure/versioning-added/versioning/added/models/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/versioning-added/versioning/added/operations/_patch.py b/packages/typespec-python/tests/generated/azure/versioning-added/versioning/added/operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/versioning-added/versioning/added/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/versioning-added/versioning/added/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/versioning-madeoptional/versioning/madeoptional/_operations/_patch.py b/packages/typespec-python/tests/generated/azure/versioning-madeoptional/versioning/madeoptional/_operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/versioning-madeoptional/versioning/madeoptional/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/versioning-madeoptional/versioning/madeoptional/_operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/versioning-madeoptional/versioning/madeoptional/_patch.py b/packages/typespec-python/tests/generated/azure/versioning-madeoptional/versioning/madeoptional/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/versioning-madeoptional/versioning/madeoptional/_patch.py +++ b/packages/typespec-python/tests/generated/azure/versioning-madeoptional/versioning/madeoptional/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/versioning-madeoptional/versioning/madeoptional/aio/_operations/_patch.py b/packages/typespec-python/tests/generated/azure/versioning-madeoptional/versioning/madeoptional/aio/_operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/versioning-madeoptional/versioning/madeoptional/aio/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/versioning-madeoptional/versioning/madeoptional/aio/_operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/versioning-madeoptional/versioning/madeoptional/aio/_patch.py b/packages/typespec-python/tests/generated/azure/versioning-madeoptional/versioning/madeoptional/aio/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/versioning-madeoptional/versioning/madeoptional/aio/_patch.py +++ b/packages/typespec-python/tests/generated/azure/versioning-madeoptional/versioning/madeoptional/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/versioning-madeoptional/versioning/madeoptional/models/_patch.py b/packages/typespec-python/tests/generated/azure/versioning-madeoptional/versioning/madeoptional/models/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/versioning-madeoptional/versioning/madeoptional/models/_patch.py +++ b/packages/typespec-python/tests/generated/azure/versioning-madeoptional/versioning/madeoptional/models/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/versioning-removed/versioning/removed/_operations/_patch.py b/packages/typespec-python/tests/generated/azure/versioning-removed/versioning/removed/_operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/versioning-removed/versioning/removed/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/versioning-removed/versioning/removed/_operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/versioning-removed/versioning/removed/_patch.py b/packages/typespec-python/tests/generated/azure/versioning-removed/versioning/removed/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/versioning-removed/versioning/removed/_patch.py +++ b/packages/typespec-python/tests/generated/azure/versioning-removed/versioning/removed/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/versioning-removed/versioning/removed/aio/_operations/_patch.py b/packages/typespec-python/tests/generated/azure/versioning-removed/versioning/removed/aio/_operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/versioning-removed/versioning/removed/aio/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/versioning-removed/versioning/removed/aio/_operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/versioning-removed/versioning/removed/aio/_patch.py b/packages/typespec-python/tests/generated/azure/versioning-removed/versioning/removed/aio/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/versioning-removed/versioning/removed/aio/_patch.py +++ b/packages/typespec-python/tests/generated/azure/versioning-removed/versioning/removed/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/versioning-removed/versioning/removed/models/_patch.py b/packages/typespec-python/tests/generated/azure/versioning-removed/versioning/removed/models/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/versioning-removed/versioning/removed/models/_patch.py +++ b/packages/typespec-python/tests/generated/azure/versioning-removed/versioning/removed/models/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/versioning-renamedfrom/versioning/renamedfrom/_patch.py b/packages/typespec-python/tests/generated/azure/versioning-renamedfrom/versioning/renamedfrom/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/versioning-renamedfrom/versioning/renamedfrom/_patch.py +++ b/packages/typespec-python/tests/generated/azure/versioning-renamedfrom/versioning/renamedfrom/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/versioning-renamedfrom/versioning/renamedfrom/aio/_patch.py b/packages/typespec-python/tests/generated/azure/versioning-renamedfrom/versioning/renamedfrom/aio/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/versioning-renamedfrom/versioning/renamedfrom/aio/_patch.py +++ b/packages/typespec-python/tests/generated/azure/versioning-renamedfrom/versioning/renamedfrom/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/versioning-renamedfrom/versioning/renamedfrom/aio/operations/_patch.py b/packages/typespec-python/tests/generated/azure/versioning-renamedfrom/versioning/renamedfrom/aio/operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/versioning-renamedfrom/versioning/renamedfrom/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/versioning-renamedfrom/versioning/renamedfrom/aio/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/versioning-renamedfrom/versioning/renamedfrom/models/_patch.py b/packages/typespec-python/tests/generated/azure/versioning-renamedfrom/versioning/renamedfrom/models/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/versioning-renamedfrom/versioning/renamedfrom/models/_patch.py +++ b/packages/typespec-python/tests/generated/azure/versioning-renamedfrom/versioning/renamedfrom/models/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/versioning-renamedfrom/versioning/renamedfrom/operations/_patch.py b/packages/typespec-python/tests/generated/azure/versioning-renamedfrom/versioning/renamedfrom/operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/versioning-renamedfrom/versioning/renamedfrom/operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/versioning-renamedfrom/versioning/renamedfrom/operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/versioning-returntypechangedfrom/versioning/returntypechangedfrom/_operations/_patch.py b/packages/typespec-python/tests/generated/azure/versioning-returntypechangedfrom/versioning/returntypechangedfrom/_operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/versioning-returntypechangedfrom/versioning/returntypechangedfrom/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/versioning-returntypechangedfrom/versioning/returntypechangedfrom/_operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/versioning-returntypechangedfrom/versioning/returntypechangedfrom/_patch.py b/packages/typespec-python/tests/generated/azure/versioning-returntypechangedfrom/versioning/returntypechangedfrom/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/versioning-returntypechangedfrom/versioning/returntypechangedfrom/_patch.py +++ b/packages/typespec-python/tests/generated/azure/versioning-returntypechangedfrom/versioning/returntypechangedfrom/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/versioning-returntypechangedfrom/versioning/returntypechangedfrom/aio/_operations/_patch.py b/packages/typespec-python/tests/generated/azure/versioning-returntypechangedfrom/versioning/returntypechangedfrom/aio/_operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/versioning-returntypechangedfrom/versioning/returntypechangedfrom/aio/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/versioning-returntypechangedfrom/versioning/returntypechangedfrom/aio/_operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/versioning-returntypechangedfrom/versioning/returntypechangedfrom/aio/_patch.py b/packages/typespec-python/tests/generated/azure/versioning-returntypechangedfrom/versioning/returntypechangedfrom/aio/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/versioning-returntypechangedfrom/versioning/returntypechangedfrom/aio/_patch.py +++ b/packages/typespec-python/tests/generated/azure/versioning-returntypechangedfrom/versioning/returntypechangedfrom/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/versioning-returntypechangedfrom/versioning/returntypechangedfrom/models/_patch.py b/packages/typespec-python/tests/generated/azure/versioning-returntypechangedfrom/versioning/returntypechangedfrom/models/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/versioning-returntypechangedfrom/versioning/returntypechangedfrom/models/_patch.py +++ b/packages/typespec-python/tests/generated/azure/versioning-returntypechangedfrom/versioning/returntypechangedfrom/models/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/versioning-typechangedfrom/versioning/typechangedfrom/_operations/_patch.py b/packages/typespec-python/tests/generated/azure/versioning-typechangedfrom/versioning/typechangedfrom/_operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/versioning-typechangedfrom/versioning/typechangedfrom/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/versioning-typechangedfrom/versioning/typechangedfrom/_operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/versioning-typechangedfrom/versioning/typechangedfrom/_patch.py b/packages/typespec-python/tests/generated/azure/versioning-typechangedfrom/versioning/typechangedfrom/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/versioning-typechangedfrom/versioning/typechangedfrom/_patch.py +++ b/packages/typespec-python/tests/generated/azure/versioning-typechangedfrom/versioning/typechangedfrom/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/versioning-typechangedfrom/versioning/typechangedfrom/aio/_operations/_patch.py b/packages/typespec-python/tests/generated/azure/versioning-typechangedfrom/versioning/typechangedfrom/aio/_operations/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/versioning-typechangedfrom/versioning/typechangedfrom/aio/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/azure/versioning-typechangedfrom/versioning/typechangedfrom/aio/_operations/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/versioning-typechangedfrom/versioning/typechangedfrom/aio/_patch.py b/packages/typespec-python/tests/generated/azure/versioning-typechangedfrom/versioning/typechangedfrom/aio/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/versioning-typechangedfrom/versioning/typechangedfrom/aio/_patch.py +++ b/packages/typespec-python/tests/generated/azure/versioning-typechangedfrom/versioning/typechangedfrom/aio/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/azure/versioning-typechangedfrom/versioning/typechangedfrom/models/_patch.py b/packages/typespec-python/tests/generated/azure/versioning-typechangedfrom/versioning/typechangedfrom/models/_patch.py index 8bcb627aa47..b6400f50d7c 100644 --- a/packages/typespec-python/tests/generated/azure/versioning-typechangedfrom/versioning/typechangedfrom/models/_patch.py +++ b/packages/typespec-python/tests/generated/azure/versioning-typechangedfrom/versioning/typechangedfrom/models/_patch.py @@ -7,6 +7,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/authentication-api-key/authentication/apikey/_operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/authentication-api-key/authentication/apikey/_operations/_patch.py index fc4fac79b3b..8391c35e9d5 100644 --- a/packages/typespec-python/tests/generated/unbranded/authentication-api-key/authentication/apikey/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/authentication-api-key/authentication/apikey/_operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List from ._operations import _ApiKeyClientOperationsMixin as Generated diff --git a/packages/typespec-python/tests/generated/unbranded/authentication-api-key/authentication/apikey/_patch.py b/packages/typespec-python/tests/generated/unbranded/authentication-api-key/authentication/apikey/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/authentication-api-key/authentication/apikey/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/authentication-api-key/authentication/apikey/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/authentication-api-key/authentication/apikey/aio/_operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/authentication-api-key/authentication/apikey/aio/_operations/_patch.py index fc4fac79b3b..8391c35e9d5 100644 --- a/packages/typespec-python/tests/generated/unbranded/authentication-api-key/authentication/apikey/aio/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/authentication-api-key/authentication/apikey/aio/_operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List from ._operations import _ApiKeyClientOperationsMixin as Generated diff --git a/packages/typespec-python/tests/generated/unbranded/authentication-api-key/authentication/apikey/aio/_patch.py b/packages/typespec-python/tests/generated/unbranded/authentication-api-key/authentication/apikey/aio/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/authentication-api-key/authentication/apikey/aio/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/authentication-api-key/authentication/apikey/aio/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/authentication-api-key/authentication/apikey/models/_patch.py b/packages/typespec-python/tests/generated/unbranded/authentication-api-key/authentication/apikey/models/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/authentication-api-key/authentication/apikey/models/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/authentication-api-key/authentication/apikey/models/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/authentication-http-custom/authentication/http/custom/_operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/authentication-http-custom/authentication/http/custom/_operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/authentication-http-custom/authentication/http/custom/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/authentication-http-custom/authentication/http/custom/_operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/authentication-http-custom/authentication/http/custom/_patch.py b/packages/typespec-python/tests/generated/unbranded/authentication-http-custom/authentication/http/custom/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/authentication-http-custom/authentication/http/custom/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/authentication-http-custom/authentication/http/custom/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/authentication-http-custom/authentication/http/custom/aio/_operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/authentication-http-custom/authentication/http/custom/aio/_operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/authentication-http-custom/authentication/http/custom/aio/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/authentication-http-custom/authentication/http/custom/aio/_operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/authentication-http-custom/authentication/http/custom/aio/_patch.py b/packages/typespec-python/tests/generated/unbranded/authentication-http-custom/authentication/http/custom/aio/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/authentication-http-custom/authentication/http/custom/aio/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/authentication-http-custom/authentication/http/custom/aio/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/authentication-http-custom/authentication/http/custom/models/_patch.py b/packages/typespec-python/tests/generated/unbranded/authentication-http-custom/authentication/http/custom/models/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/authentication-http-custom/authentication/http/custom/models/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/authentication-http-custom/authentication/http/custom/models/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/authentication-noauth-union/authentication/noauth/union/_operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/authentication-noauth-union/authentication/noauth/union/_operations/_patch.py index bbe39eaf695..b208fb11fbc 100644 --- a/packages/typespec-python/tests/generated/unbranded/authentication-noauth-union/authentication/noauth/union/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/authentication-noauth-union/authentication/noauth/union/_operations/_patch.py @@ -5,7 +5,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/authentication-noauth-union/authentication/noauth/union/_patch.py b/packages/typespec-python/tests/generated/unbranded/authentication-noauth-union/authentication/noauth/union/_patch.py index bbe39eaf695..b208fb11fbc 100644 --- a/packages/typespec-python/tests/generated/unbranded/authentication-noauth-union/authentication/noauth/union/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/authentication-noauth-union/authentication/noauth/union/_patch.py @@ -5,7 +5,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/authentication-noauth-union/authentication/noauth/union/aio/_operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/authentication-noauth-union/authentication/noauth/union/aio/_operations/_patch.py index bbe39eaf695..b208fb11fbc 100644 --- a/packages/typespec-python/tests/generated/unbranded/authentication-noauth-union/authentication/noauth/union/aio/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/authentication-noauth-union/authentication/noauth/union/aio/_operations/_patch.py @@ -5,7 +5,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/authentication-noauth-union/authentication/noauth/union/aio/_patch.py b/packages/typespec-python/tests/generated/unbranded/authentication-noauth-union/authentication/noauth/union/aio/_patch.py index bbe39eaf695..b208fb11fbc 100644 --- a/packages/typespec-python/tests/generated/unbranded/authentication-noauth-union/authentication/noauth/union/aio/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/authentication-noauth-union/authentication/noauth/union/aio/_patch.py @@ -5,7 +5,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/authentication-oauth2/authentication/oauth2/_operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/authentication-oauth2/authentication/oauth2/_operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/authentication-oauth2/authentication/oauth2/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/authentication-oauth2/authentication/oauth2/_operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/authentication-oauth2/authentication/oauth2/_patch.py b/packages/typespec-python/tests/generated/unbranded/authentication-oauth2/authentication/oauth2/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/authentication-oauth2/authentication/oauth2/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/authentication-oauth2/authentication/oauth2/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/authentication-oauth2/authentication/oauth2/aio/_operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/authentication-oauth2/authentication/oauth2/aio/_operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/authentication-oauth2/authentication/oauth2/aio/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/authentication-oauth2/authentication/oauth2/aio/_operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/authentication-oauth2/authentication/oauth2/aio/_patch.py b/packages/typespec-python/tests/generated/unbranded/authentication-oauth2/authentication/oauth2/aio/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/authentication-oauth2/authentication/oauth2/aio/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/authentication-oauth2/authentication/oauth2/aio/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/authentication-oauth2/authentication/oauth2/models/_patch.py b/packages/typespec-python/tests/generated/unbranded/authentication-oauth2/authentication/oauth2/models/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/authentication-oauth2/authentication/oauth2/models/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/authentication-oauth2/authentication/oauth2/models/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/authentication-union/authentication/union/_operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/authentication-union/authentication/union/_operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/authentication-union/authentication/union/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/authentication-union/authentication/union/_operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/authentication-union/authentication/union/_patch.py b/packages/typespec-python/tests/generated/unbranded/authentication-union/authentication/union/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/authentication-union/authentication/union/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/authentication-union/authentication/union/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/authentication-union/authentication/union/aio/_operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/authentication-union/authentication/union/aio/_operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/authentication-union/authentication/union/aio/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/authentication-union/authentication/union/aio/_operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/authentication-union/authentication/union/aio/_patch.py b/packages/typespec-python/tests/generated/unbranded/authentication-union/authentication/union/aio/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/authentication-union/authentication/union/aio/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/authentication-union/authentication/union/aio/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/encode-array/encode/array/_patch.py b/packages/typespec-python/tests/generated/unbranded/encode-array/encode/array/_patch.py index bbe39eaf695..b208fb11fbc 100644 --- a/packages/typespec-python/tests/generated/unbranded/encode-array/encode/array/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/encode-array/encode/array/_patch.py @@ -5,7 +5,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/encode-array/encode/array/aio/_patch.py b/packages/typespec-python/tests/generated/unbranded/encode-array/encode/array/aio/_patch.py index bbe39eaf695..b208fb11fbc 100644 --- a/packages/typespec-python/tests/generated/unbranded/encode-array/encode/array/aio/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/encode-array/encode/array/aio/_patch.py @@ -5,7 +5,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/encode-array/encode/array/models/_patch.py b/packages/typespec-python/tests/generated/unbranded/encode-array/encode/array/models/_patch.py index bbe39eaf695..b208fb11fbc 100644 --- a/packages/typespec-python/tests/generated/unbranded/encode-array/encode/array/models/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/encode-array/encode/array/models/_patch.py @@ -5,7 +5,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/encode-array/encode/array/property/aio/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/encode-array/encode/array/property/aio/operations/_patch.py index bbe39eaf695..b208fb11fbc 100644 --- a/packages/typespec-python/tests/generated/unbranded/encode-array/encode/array/property/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/encode-array/encode/array/property/aio/operations/_patch.py @@ -5,7 +5,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/encode-array/encode/array/property/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/encode-array/encode/array/property/operations/_patch.py index bbe39eaf695..b208fb11fbc 100644 --- a/packages/typespec-python/tests/generated/unbranded/encode-array/encode/array/property/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/encode-array/encode/array/property/operations/_patch.py @@ -5,7 +5,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/encode-bytes/encode/bytes/_patch.py b/packages/typespec-python/tests/generated/unbranded/encode-bytes/encode/bytes/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/encode-bytes/encode/bytes/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/encode-bytes/encode/bytes/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/encode-bytes/encode/bytes/aio/_patch.py b/packages/typespec-python/tests/generated/unbranded/encode-bytes/encode/bytes/aio/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/encode-bytes/encode/bytes/aio/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/encode-bytes/encode/bytes/aio/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/encode-bytes/encode/bytes/header/aio/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/encode-bytes/encode/bytes/header/aio/operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/encode-bytes/encode/bytes/header/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/encode-bytes/encode/bytes/header/aio/operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/encode-bytes/encode/bytes/header/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/encode-bytes/encode/bytes/header/operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/encode-bytes/encode/bytes/header/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/encode-bytes/encode/bytes/header/operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/encode-bytes/encode/bytes/models/_patch.py b/packages/typespec-python/tests/generated/unbranded/encode-bytes/encode/bytes/models/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/encode-bytes/encode/bytes/models/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/encode-bytes/encode/bytes/models/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/encode-bytes/encode/bytes/property/aio/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/encode-bytes/encode/bytes/property/aio/operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/encode-bytes/encode/bytes/property/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/encode-bytes/encode/bytes/property/aio/operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/encode-bytes/encode/bytes/property/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/encode-bytes/encode/bytes/property/operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/encode-bytes/encode/bytes/property/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/encode-bytes/encode/bytes/property/operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/encode-bytes/encode/bytes/query/aio/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/encode-bytes/encode/bytes/query/aio/operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/encode-bytes/encode/bytes/query/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/encode-bytes/encode/bytes/query/aio/operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/encode-bytes/encode/bytes/query/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/encode-bytes/encode/bytes/query/operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/encode-bytes/encode/bytes/query/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/encode-bytes/encode/bytes/query/operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/encode-bytes/encode/bytes/requestbody/aio/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/encode-bytes/encode/bytes/requestbody/aio/operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/encode-bytes/encode/bytes/requestbody/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/encode-bytes/encode/bytes/requestbody/aio/operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/encode-bytes/encode/bytes/requestbody/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/encode-bytes/encode/bytes/requestbody/operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/encode-bytes/encode/bytes/requestbody/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/encode-bytes/encode/bytes/requestbody/operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/encode-bytes/encode/bytes/responsebody/aio/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/encode-bytes/encode/bytes/responsebody/aio/operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/encode-bytes/encode/bytes/responsebody/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/encode-bytes/encode/bytes/responsebody/aio/operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/encode-bytes/encode/bytes/responsebody/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/encode-bytes/encode/bytes/responsebody/operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/encode-bytes/encode/bytes/responsebody/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/encode-bytes/encode/bytes/responsebody/operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/encode-datetime/encode/datetime/_patch.py b/packages/typespec-python/tests/generated/unbranded/encode-datetime/encode/datetime/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/encode-datetime/encode/datetime/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/encode-datetime/encode/datetime/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/encode-datetime/encode/datetime/aio/_patch.py b/packages/typespec-python/tests/generated/unbranded/encode-datetime/encode/datetime/aio/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/encode-datetime/encode/datetime/aio/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/encode-datetime/encode/datetime/aio/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/encode-datetime/encode/datetime/header/aio/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/encode-datetime/encode/datetime/header/aio/operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/encode-datetime/encode/datetime/header/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/encode-datetime/encode/datetime/header/aio/operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/encode-datetime/encode/datetime/header/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/encode-datetime/encode/datetime/header/operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/encode-datetime/encode/datetime/header/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/encode-datetime/encode/datetime/header/operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/encode-datetime/encode/datetime/models/_patch.py b/packages/typespec-python/tests/generated/unbranded/encode-datetime/encode/datetime/models/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/encode-datetime/encode/datetime/models/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/encode-datetime/encode/datetime/models/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/encode-datetime/encode/datetime/property/aio/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/encode-datetime/encode/datetime/property/aio/operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/encode-datetime/encode/datetime/property/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/encode-datetime/encode/datetime/property/aio/operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/encode-datetime/encode/datetime/property/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/encode-datetime/encode/datetime/property/operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/encode-datetime/encode/datetime/property/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/encode-datetime/encode/datetime/property/operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/encode-datetime/encode/datetime/query/aio/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/encode-datetime/encode/datetime/query/aio/operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/encode-datetime/encode/datetime/query/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/encode-datetime/encode/datetime/query/aio/operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/encode-datetime/encode/datetime/query/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/encode-datetime/encode/datetime/query/operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/encode-datetime/encode/datetime/query/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/encode-datetime/encode/datetime/query/operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/encode-datetime/encode/datetime/responseheader/aio/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/encode-datetime/encode/datetime/responseheader/aio/operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/encode-datetime/encode/datetime/responseheader/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/encode-datetime/encode/datetime/responseheader/aio/operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/encode-datetime/encode/datetime/responseheader/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/encode-datetime/encode/datetime/responseheader/operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/encode-datetime/encode/datetime/responseheader/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/encode-datetime/encode/datetime/responseheader/operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/encode-duration/encode/duration/_patch.py b/packages/typespec-python/tests/generated/unbranded/encode-duration/encode/duration/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/encode-duration/encode/duration/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/encode-duration/encode/duration/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/encode-duration/encode/duration/aio/_patch.py b/packages/typespec-python/tests/generated/unbranded/encode-duration/encode/duration/aio/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/encode-duration/encode/duration/aio/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/encode-duration/encode/duration/aio/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/encode-duration/encode/duration/header/aio/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/encode-duration/encode/duration/header/aio/operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/encode-duration/encode/duration/header/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/encode-duration/encode/duration/header/aio/operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/encode-duration/encode/duration/header/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/encode-duration/encode/duration/header/operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/encode-duration/encode/duration/header/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/encode-duration/encode/duration/header/operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/encode-duration/encode/duration/property/aio/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/encode-duration/encode/duration/property/aio/operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/encode-duration/encode/duration/property/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/encode-duration/encode/duration/property/aio/operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/encode-duration/encode/duration/property/models/_patch.py b/packages/typespec-python/tests/generated/unbranded/encode-duration/encode/duration/property/models/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/encode-duration/encode/duration/property/models/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/encode-duration/encode/duration/property/models/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/encode-duration/encode/duration/property/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/encode-duration/encode/duration/property/operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/encode-duration/encode/duration/property/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/encode-duration/encode/duration/property/operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/encode-duration/encode/duration/query/aio/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/encode-duration/encode/duration/query/aio/operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/encode-duration/encode/duration/query/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/encode-duration/encode/duration/query/aio/operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/encode-duration/encode/duration/query/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/encode-duration/encode/duration/query/operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/encode-duration/encode/duration/query/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/encode-duration/encode/duration/query/operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/encode-numeric/encode/numeric/_patch.py b/packages/typespec-python/tests/generated/unbranded/encode-numeric/encode/numeric/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/encode-numeric/encode/numeric/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/encode-numeric/encode/numeric/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/encode-numeric/encode/numeric/aio/_patch.py b/packages/typespec-python/tests/generated/unbranded/encode-numeric/encode/numeric/aio/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/encode-numeric/encode/numeric/aio/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/encode-numeric/encode/numeric/aio/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/encode-numeric/encode/numeric/property/aio/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/encode-numeric/encode/numeric/property/aio/operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/encode-numeric/encode/numeric/property/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/encode-numeric/encode/numeric/property/aio/operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/encode-numeric/encode/numeric/property/models/_patch.py b/packages/typespec-python/tests/generated/unbranded/encode-numeric/encode/numeric/property/models/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/encode-numeric/encode/numeric/property/models/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/encode-numeric/encode/numeric/property/models/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/encode-numeric/encode/numeric/property/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/encode-numeric/encode/numeric/property/operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/encode-numeric/encode/numeric/property/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/encode-numeric/encode/numeric/property/operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/generation-subdir/generation/subdir/_generated/_operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/generation-subdir/generation/subdir/_generated/_operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/generation-subdir/generation/subdir/_generated/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/generation-subdir/generation/subdir/_generated/_operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/generation-subdir/generation/subdir/_generated/_patch.py b/packages/typespec-python/tests/generated/unbranded/generation-subdir/generation/subdir/_generated/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/generation-subdir/generation/subdir/_generated/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/generation-subdir/generation/subdir/_generated/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/generation-subdir/generation/subdir/_generated/aio/_operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/generation-subdir/generation/subdir/_generated/aio/_operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/generation-subdir/generation/subdir/_generated/aio/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/generation-subdir/generation/subdir/_generated/aio/_operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/generation-subdir/generation/subdir/_generated/aio/_patch.py b/packages/typespec-python/tests/generated/unbranded/generation-subdir/generation/subdir/_generated/aio/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/generation-subdir/generation/subdir/_generated/aio/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/generation-subdir/generation/subdir/_generated/aio/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/generation-subdir/generation/subdir/_generated/models/_patch.py b/packages/typespec-python/tests/generated/unbranded/generation-subdir/generation/subdir/_generated/models/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/generation-subdir/generation/subdir/_generated/models/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/generation-subdir/generation/subdir/_generated/models/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/generation-subdir2/generation/subdir2/_generated/_patch.py b/packages/typespec-python/tests/generated/unbranded/generation-subdir2/generation/subdir2/_generated/_patch.py index bbe39eaf695..b208fb11fbc 100644 --- a/packages/typespec-python/tests/generated/unbranded/generation-subdir2/generation/subdir2/_generated/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/generation-subdir2/generation/subdir2/_generated/_patch.py @@ -5,7 +5,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/generation-subdir2/generation/subdir2/_generated/aio/_patch.py b/packages/typespec-python/tests/generated/unbranded/generation-subdir2/generation/subdir2/_generated/aio/_patch.py index bbe39eaf695..b208fb11fbc 100644 --- a/packages/typespec-python/tests/generated/unbranded/generation-subdir2/generation/subdir2/_generated/aio/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/generation-subdir2/generation/subdir2/_generated/aio/_patch.py @@ -5,7 +5,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/generation-subdir2/generation/subdir2/_generated/aio/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/generation-subdir2/generation/subdir2/_generated/aio/operations/_patch.py index bbe39eaf695..b208fb11fbc 100644 --- a/packages/typespec-python/tests/generated/unbranded/generation-subdir2/generation/subdir2/_generated/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/generation-subdir2/generation/subdir2/_generated/aio/operations/_patch.py @@ -5,7 +5,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/generation-subdir2/generation/subdir2/_generated/models/_patch.py b/packages/typespec-python/tests/generated/unbranded/generation-subdir2/generation/subdir2/_generated/models/_patch.py index bbe39eaf695..b208fb11fbc 100644 --- a/packages/typespec-python/tests/generated/unbranded/generation-subdir2/generation/subdir2/_generated/models/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/generation-subdir2/generation/subdir2/_generated/models/_patch.py @@ -5,7 +5,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/generation-subdir2/generation/subdir2/_generated/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/generation-subdir2/generation/subdir2/_generated/operations/_patch.py index bbe39eaf695..b208fb11fbc 100644 --- a/packages/typespec-python/tests/generated/unbranded/generation-subdir2/generation/subdir2/_generated/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/generation-subdir2/generation/subdir2/_generated/operations/_patch.py @@ -5,7 +5,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/headasbooleanfalse/headasbooleanfalse/_operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/headasbooleanfalse/headasbooleanfalse/_operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/headasbooleanfalse/headasbooleanfalse/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/headasbooleanfalse/headasbooleanfalse/_operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/headasbooleanfalse/headasbooleanfalse/_patch.py b/packages/typespec-python/tests/generated/unbranded/headasbooleanfalse/headasbooleanfalse/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/headasbooleanfalse/headasbooleanfalse/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/headasbooleanfalse/headasbooleanfalse/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/headasbooleanfalse/headasbooleanfalse/aio/_operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/headasbooleanfalse/headasbooleanfalse/aio/_operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/headasbooleanfalse/headasbooleanfalse/aio/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/headasbooleanfalse/headasbooleanfalse/aio/_operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/headasbooleanfalse/headasbooleanfalse/aio/_patch.py b/packages/typespec-python/tests/generated/unbranded/headasbooleanfalse/headasbooleanfalse/aio/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/headasbooleanfalse/headasbooleanfalse/aio/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/headasbooleanfalse/headasbooleanfalse/aio/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/headasbooleanfalse/headasbooleanfalse/models/_patch.py b/packages/typespec-python/tests/generated/unbranded/headasbooleanfalse/headasbooleanfalse/models/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/headasbooleanfalse/headasbooleanfalse/models/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/headasbooleanfalse/headasbooleanfalse/models/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/headasbooleantrue/headasbooleantrue/_operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/headasbooleantrue/headasbooleantrue/_operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/headasbooleantrue/headasbooleantrue/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/headasbooleantrue/headasbooleantrue/_operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/headasbooleantrue/headasbooleantrue/_patch.py b/packages/typespec-python/tests/generated/unbranded/headasbooleantrue/headasbooleantrue/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/headasbooleantrue/headasbooleantrue/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/headasbooleantrue/headasbooleantrue/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/headasbooleantrue/headasbooleantrue/aio/_operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/headasbooleantrue/headasbooleantrue/aio/_operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/headasbooleantrue/headasbooleantrue/aio/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/headasbooleantrue/headasbooleantrue/aio/_operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/headasbooleantrue/headasbooleantrue/aio/_patch.py b/packages/typespec-python/tests/generated/unbranded/headasbooleantrue/headasbooleantrue/aio/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/headasbooleantrue/headasbooleantrue/aio/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/headasbooleantrue/headasbooleantrue/aio/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/headasbooleantrue/headasbooleantrue/models/_patch.py b/packages/typespec-python/tests/generated/unbranded/headasbooleantrue/headasbooleantrue/models/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/headasbooleantrue/headasbooleantrue/models/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/headasbooleantrue/headasbooleantrue/models/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/parameters-basic/parameters/basic/_patch.py b/packages/typespec-python/tests/generated/unbranded/parameters-basic/parameters/basic/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/parameters-basic/parameters/basic/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/parameters-basic/parameters/basic/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/parameters-basic/parameters/basic/aio/_patch.py b/packages/typespec-python/tests/generated/unbranded/parameters-basic/parameters/basic/aio/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/parameters-basic/parameters/basic/aio/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/parameters-basic/parameters/basic/aio/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/parameters-basic/parameters/basic/explicitbody/aio/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/parameters-basic/parameters/basic/explicitbody/aio/operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/parameters-basic/parameters/basic/explicitbody/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/parameters-basic/parameters/basic/explicitbody/aio/operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/parameters-basic/parameters/basic/explicitbody/models/_patch.py b/packages/typespec-python/tests/generated/unbranded/parameters-basic/parameters/basic/explicitbody/models/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/parameters-basic/parameters/basic/explicitbody/models/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/parameters-basic/parameters/basic/explicitbody/models/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/parameters-basic/parameters/basic/explicitbody/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/parameters-basic/parameters/basic/explicitbody/operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/parameters-basic/parameters/basic/explicitbody/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/parameters-basic/parameters/basic/explicitbody/operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/parameters-basic/parameters/basic/implicitbody/aio/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/parameters-basic/parameters/basic/implicitbody/aio/operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/parameters-basic/parameters/basic/implicitbody/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/parameters-basic/parameters/basic/implicitbody/aio/operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/parameters-basic/parameters/basic/implicitbody/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/parameters-basic/parameters/basic/implicitbody/operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/parameters-basic/parameters/basic/implicitbody/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/parameters-basic/parameters/basic/implicitbody/operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/parameters-body-optionality/parameters/bodyoptionality/_operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/parameters-body-optionality/parameters/bodyoptionality/_operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/parameters-body-optionality/parameters/bodyoptionality/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/parameters-body-optionality/parameters/bodyoptionality/_operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/parameters-body-optionality/parameters/bodyoptionality/_patch.py b/packages/typespec-python/tests/generated/unbranded/parameters-body-optionality/parameters/bodyoptionality/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/parameters-body-optionality/parameters/bodyoptionality/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/parameters-body-optionality/parameters/bodyoptionality/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/parameters-body-optionality/parameters/bodyoptionality/aio/_operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/parameters-body-optionality/parameters/bodyoptionality/aio/_operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/parameters-body-optionality/parameters/bodyoptionality/aio/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/parameters-body-optionality/parameters/bodyoptionality/aio/_operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/parameters-body-optionality/parameters/bodyoptionality/aio/_patch.py b/packages/typespec-python/tests/generated/unbranded/parameters-body-optionality/parameters/bodyoptionality/aio/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/parameters-body-optionality/parameters/bodyoptionality/aio/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/parameters-body-optionality/parameters/bodyoptionality/aio/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/parameters-body-optionality/parameters/bodyoptionality/models/_patch.py b/packages/typespec-python/tests/generated/unbranded/parameters-body-optionality/parameters/bodyoptionality/models/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/parameters-body-optionality/parameters/bodyoptionality/models/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/parameters-body-optionality/parameters/bodyoptionality/models/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/parameters-body-optionality/parameters/bodyoptionality/optionalexplicit/aio/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/parameters-body-optionality/parameters/bodyoptionality/optionalexplicit/aio/operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/parameters-body-optionality/parameters/bodyoptionality/optionalexplicit/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/parameters-body-optionality/parameters/bodyoptionality/optionalexplicit/aio/operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/parameters-body-optionality/parameters/bodyoptionality/optionalexplicit/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/parameters-body-optionality/parameters/bodyoptionality/optionalexplicit/operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/parameters-body-optionality/parameters/bodyoptionality/optionalexplicit/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/parameters-body-optionality/parameters/bodyoptionality/optionalexplicit/operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/parameters-collection-format/parameters/collectionformat/_patch.py b/packages/typespec-python/tests/generated/unbranded/parameters-collection-format/parameters/collectionformat/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/parameters-collection-format/parameters/collectionformat/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/parameters-collection-format/parameters/collectionformat/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/parameters-collection-format/parameters/collectionformat/aio/_patch.py b/packages/typespec-python/tests/generated/unbranded/parameters-collection-format/parameters/collectionformat/aio/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/parameters-collection-format/parameters/collectionformat/aio/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/parameters-collection-format/parameters/collectionformat/aio/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/parameters-collection-format/parameters/collectionformat/header/aio/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/parameters-collection-format/parameters/collectionformat/header/aio/operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/parameters-collection-format/parameters/collectionformat/header/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/parameters-collection-format/parameters/collectionformat/header/aio/operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/parameters-collection-format/parameters/collectionformat/header/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/parameters-collection-format/parameters/collectionformat/header/operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/parameters-collection-format/parameters/collectionformat/header/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/parameters-collection-format/parameters/collectionformat/header/operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/parameters-collection-format/parameters/collectionformat/query/aio/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/parameters-collection-format/parameters/collectionformat/query/aio/operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/parameters-collection-format/parameters/collectionformat/query/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/parameters-collection-format/parameters/collectionformat/query/aio/operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/parameters-collection-format/parameters/collectionformat/query/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/parameters-collection-format/parameters/collectionformat/query/operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/parameters-collection-format/parameters/collectionformat/query/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/parameters-collection-format/parameters/collectionformat/query/operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/parameters-path/parameters/path/_operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/parameters-path/parameters/path/_operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/parameters-path/parameters/path/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/parameters-path/parameters/path/_operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/parameters-path/parameters/path/_patch.py b/packages/typespec-python/tests/generated/unbranded/parameters-path/parameters/path/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/parameters-path/parameters/path/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/parameters-path/parameters/path/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/parameters-path/parameters/path/aio/_operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/parameters-path/parameters/path/aio/_operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/parameters-path/parameters/path/aio/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/parameters-path/parameters/path/aio/_operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/parameters-path/parameters/path/aio/_patch.py b/packages/typespec-python/tests/generated/unbranded/parameters-path/parameters/path/aio/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/parameters-path/parameters/path/aio/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/parameters-path/parameters/path/aio/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/parameters-query/parameters/query/_patch.py b/packages/typespec-python/tests/generated/unbranded/parameters-query/parameters/query/_patch.py index bbe39eaf695..b208fb11fbc 100644 --- a/packages/typespec-python/tests/generated/unbranded/parameters-query/parameters/query/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/parameters-query/parameters/query/_patch.py @@ -5,7 +5,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/parameters-query/parameters/query/aio/_patch.py b/packages/typespec-python/tests/generated/unbranded/parameters-query/parameters/query/aio/_patch.py index bbe39eaf695..b208fb11fbc 100644 --- a/packages/typespec-python/tests/generated/unbranded/parameters-query/parameters/query/aio/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/parameters-query/parameters/query/aio/_patch.py @@ -5,7 +5,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/parameters-query/parameters/query/aio/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/parameters-query/parameters/query/aio/operations/_patch.py index bbe39eaf695..b208fb11fbc 100644 --- a/packages/typespec-python/tests/generated/unbranded/parameters-query/parameters/query/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/parameters-query/parameters/query/aio/operations/_patch.py @@ -5,7 +5,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/parameters-query/parameters/query/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/parameters-query/parameters/query/operations/_patch.py index bbe39eaf695..b208fb11fbc 100644 --- a/packages/typespec-python/tests/generated/unbranded/parameters-query/parameters/query/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/parameters-query/parameters/query/operations/_patch.py @@ -5,7 +5,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/parameters-spread/parameters/spread/_patch.py b/packages/typespec-python/tests/generated/unbranded/parameters-spread/parameters/spread/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/parameters-spread/parameters/spread/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/parameters-spread/parameters/spread/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/parameters-spread/parameters/spread/aio/_patch.py b/packages/typespec-python/tests/generated/unbranded/parameters-spread/parameters/spread/aio/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/parameters-spread/parameters/spread/aio/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/parameters-spread/parameters/spread/aio/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/parameters-spread/parameters/spread/alias/aio/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/parameters-spread/parameters/spread/alias/aio/operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/parameters-spread/parameters/spread/alias/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/parameters-spread/parameters/spread/alias/aio/operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/parameters-spread/parameters/spread/alias/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/parameters-spread/parameters/spread/alias/operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/parameters-spread/parameters/spread/alias/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/parameters-spread/parameters/spread/alias/operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/parameters-spread/parameters/spread/model/aio/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/parameters-spread/parameters/spread/model/aio/operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/parameters-spread/parameters/spread/model/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/parameters-spread/parameters/spread/model/aio/operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/parameters-spread/parameters/spread/model/models/_patch.py b/packages/typespec-python/tests/generated/unbranded/parameters-spread/parameters/spread/model/models/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/parameters-spread/parameters/spread/model/models/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/parameters-spread/parameters/spread/model/models/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/parameters-spread/parameters/spread/model/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/parameters-spread/parameters/spread/model/operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/parameters-spread/parameters/spread/model/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/parameters-spread/parameters/spread/model/operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/payload-content-negotiation/payload/contentnegotiation/_patch.py b/packages/typespec-python/tests/generated/unbranded/payload-content-negotiation/payload/contentnegotiation/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/payload-content-negotiation/payload/contentnegotiation/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/payload-content-negotiation/payload/contentnegotiation/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/payload-content-negotiation/payload/contentnegotiation/aio/_patch.py b/packages/typespec-python/tests/generated/unbranded/payload-content-negotiation/payload/contentnegotiation/aio/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/payload-content-negotiation/payload/contentnegotiation/aio/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/payload-content-negotiation/payload/contentnegotiation/aio/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/payload-content-negotiation/payload/contentnegotiation/differentbody/aio/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/payload-content-negotiation/payload/contentnegotiation/differentbody/aio/operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/payload-content-negotiation/payload/contentnegotiation/differentbody/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/payload-content-negotiation/payload/contentnegotiation/differentbody/aio/operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/payload-content-negotiation/payload/contentnegotiation/differentbody/models/_patch.py b/packages/typespec-python/tests/generated/unbranded/payload-content-negotiation/payload/contentnegotiation/differentbody/models/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/payload-content-negotiation/payload/contentnegotiation/differentbody/models/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/payload-content-negotiation/payload/contentnegotiation/differentbody/models/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/payload-content-negotiation/payload/contentnegotiation/differentbody/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/payload-content-negotiation/payload/contentnegotiation/differentbody/operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/payload-content-negotiation/payload/contentnegotiation/differentbody/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/payload-content-negotiation/payload/contentnegotiation/differentbody/operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/payload-content-negotiation/payload/contentnegotiation/samebody/aio/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/payload-content-negotiation/payload/contentnegotiation/samebody/aio/operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/payload-content-negotiation/payload/contentnegotiation/samebody/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/payload-content-negotiation/payload/contentnegotiation/samebody/aio/operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/payload-content-negotiation/payload/contentnegotiation/samebody/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/payload-content-negotiation/payload/contentnegotiation/samebody/operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/payload-content-negotiation/payload/contentnegotiation/samebody/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/payload-content-negotiation/payload/contentnegotiation/samebody/operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/payload-json-merge-patch/payload/jsonmergepatch/_operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/payload-json-merge-patch/payload/jsonmergepatch/_operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/payload-json-merge-patch/payload/jsonmergepatch/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/payload-json-merge-patch/payload/jsonmergepatch/_operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/payload-json-merge-patch/payload/jsonmergepatch/_patch.py b/packages/typespec-python/tests/generated/unbranded/payload-json-merge-patch/payload/jsonmergepatch/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/payload-json-merge-patch/payload/jsonmergepatch/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/payload-json-merge-patch/payload/jsonmergepatch/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/payload-json-merge-patch/payload/jsonmergepatch/aio/_operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/payload-json-merge-patch/payload/jsonmergepatch/aio/_operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/payload-json-merge-patch/payload/jsonmergepatch/aio/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/payload-json-merge-patch/payload/jsonmergepatch/aio/_operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/payload-json-merge-patch/payload/jsonmergepatch/aio/_patch.py b/packages/typespec-python/tests/generated/unbranded/payload-json-merge-patch/payload/jsonmergepatch/aio/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/payload-json-merge-patch/payload/jsonmergepatch/aio/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/payload-json-merge-patch/payload/jsonmergepatch/aio/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/payload-json-merge-patch/payload/jsonmergepatch/models/_patch.py b/packages/typespec-python/tests/generated/unbranded/payload-json-merge-patch/payload/jsonmergepatch/models/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/payload-json-merge-patch/payload/jsonmergepatch/models/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/payload-json-merge-patch/payload/jsonmergepatch/models/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/payload-media-type/payload/mediatype/_patch.py b/packages/typespec-python/tests/generated/unbranded/payload-media-type/payload/mediatype/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/payload-media-type/payload/mediatype/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/payload-media-type/payload/mediatype/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/payload-media-type/payload/mediatype/aio/_patch.py b/packages/typespec-python/tests/generated/unbranded/payload-media-type/payload/mediatype/aio/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/payload-media-type/payload/mediatype/aio/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/payload-media-type/payload/mediatype/aio/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/payload-media-type/payload/mediatype/stringbody/aio/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/payload-media-type/payload/mediatype/stringbody/aio/operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/payload-media-type/payload/mediatype/stringbody/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/payload-media-type/payload/mediatype/stringbody/aio/operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/payload-media-type/payload/mediatype/stringbody/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/payload-media-type/payload/mediatype/stringbody/operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/payload-media-type/payload/mediatype/stringbody/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/payload-media-type/payload/mediatype/stringbody/operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/payload-multipart/payload/multipart/_patch.py b/packages/typespec-python/tests/generated/unbranded/payload-multipart/payload/multipart/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/payload-multipart/payload/multipart/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/payload-multipart/payload/multipart/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/payload-multipart/payload/multipart/_utils/utils.py b/packages/typespec-python/tests/generated/unbranded/payload-multipart/payload/multipart/_utils/utils.py index ac0302f5967..4df01ac7bff 100644 --- a/packages/typespec-python/tests/generated/unbranded/payload-multipart/payload/multipart/_utils/utils.py +++ b/packages/typespec-python/tests/generated/unbranded/payload-multipart/payload/multipart/_utils/utils.py @@ -3,7 +3,6 @@ from .._utils.model_base import Model, SdkJSONEncoder - # file-like tuple could be `(filename, IO (or bytes))` or `(filename, IO (or bytes), content_type)` FileContent = Union[str, bytes, IO[str], IO[bytes]] diff --git a/packages/typespec-python/tests/generated/unbranded/payload-multipart/payload/multipart/aio/_patch.py b/packages/typespec-python/tests/generated/unbranded/payload-multipart/payload/multipart/aio/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/payload-multipart/payload/multipart/aio/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/payload-multipart/payload/multipart/aio/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/payload-multipart/payload/multipart/formdata/aio/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/payload-multipart/payload/multipart/formdata/aio/operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/payload-multipart/payload/multipart/formdata/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/payload-multipart/payload/multipart/formdata/aio/operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/payload-multipart/payload/multipart/formdata/file/aio/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/payload-multipart/payload/multipart/formdata/file/aio/operations/_patch.py index bbe39eaf695..b208fb11fbc 100644 --- a/packages/typespec-python/tests/generated/unbranded/payload-multipart/payload/multipart/formdata/file/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/payload-multipart/payload/multipart/formdata/file/aio/operations/_patch.py @@ -5,7 +5,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/payload-multipart/payload/multipart/formdata/file/models/_patch.py b/packages/typespec-python/tests/generated/unbranded/payload-multipart/payload/multipart/formdata/file/models/_patch.py index bbe39eaf695..b208fb11fbc 100644 --- a/packages/typespec-python/tests/generated/unbranded/payload-multipart/payload/multipart/formdata/file/models/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/payload-multipart/payload/multipart/formdata/file/models/_patch.py @@ -5,7 +5,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/payload-multipart/payload/multipart/formdata/file/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/payload-multipart/payload/multipart/formdata/file/operations/_patch.py index bbe39eaf695..b208fb11fbc 100644 --- a/packages/typespec-python/tests/generated/unbranded/payload-multipart/payload/multipart/formdata/file/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/payload-multipart/payload/multipart/formdata/file/operations/_patch.py @@ -5,7 +5,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/payload-multipart/payload/multipart/formdata/httpparts/aio/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/payload-multipart/payload/multipart/formdata/httpparts/aio/operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/payload-multipart/payload/multipart/formdata/httpparts/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/payload-multipart/payload/multipart/formdata/httpparts/aio/operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/payload-multipart/payload/multipart/formdata/httpparts/contenttype/aio/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/payload-multipart/payload/multipart/formdata/httpparts/contenttype/aio/operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/payload-multipart/payload/multipart/formdata/httpparts/contenttype/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/payload-multipart/payload/multipart/formdata/httpparts/contenttype/aio/operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/payload-multipart/payload/multipart/formdata/httpparts/contenttype/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/payload-multipart/payload/multipart/formdata/httpparts/contenttype/operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/payload-multipart/payload/multipart/formdata/httpparts/contenttype/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/payload-multipart/payload/multipart/formdata/httpparts/contenttype/operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/payload-multipart/payload/multipart/formdata/httpparts/nonstring/aio/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/payload-multipart/payload/multipart/formdata/httpparts/nonstring/aio/operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/payload-multipart/payload/multipart/formdata/httpparts/nonstring/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/payload-multipart/payload/multipart/formdata/httpparts/nonstring/aio/operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/payload-multipart/payload/multipart/formdata/httpparts/nonstring/models/_patch.py b/packages/typespec-python/tests/generated/unbranded/payload-multipart/payload/multipart/formdata/httpparts/nonstring/models/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/payload-multipart/payload/multipart/formdata/httpparts/nonstring/models/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/payload-multipart/payload/multipart/formdata/httpparts/nonstring/models/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/payload-multipart/payload/multipart/formdata/httpparts/nonstring/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/payload-multipart/payload/multipart/formdata/httpparts/nonstring/operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/payload-multipart/payload/multipart/formdata/httpparts/nonstring/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/payload-multipart/payload/multipart/formdata/httpparts/nonstring/operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/payload-multipart/payload/multipart/formdata/httpparts/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/payload-multipart/payload/multipart/formdata/httpparts/operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/payload-multipart/payload/multipart/formdata/httpparts/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/payload-multipart/payload/multipart/formdata/httpparts/operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/payload-multipart/payload/multipart/formdata/models/_patch.py b/packages/typespec-python/tests/generated/unbranded/payload-multipart/payload/multipart/formdata/models/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/payload-multipart/payload/multipart/formdata/models/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/payload-multipart/payload/multipart/formdata/models/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/payload-multipart/payload/multipart/formdata/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/payload-multipart/payload/multipart/formdata/operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/payload-multipart/payload/multipart/formdata/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/payload-multipart/payload/multipart/formdata/operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/payload-multipart/payload/multipart/models/_patch.py b/packages/typespec-python/tests/generated/unbranded/payload-multipart/payload/multipart/models/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/payload-multipart/payload/multipart/models/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/payload-multipart/payload/multipart/models/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/payload-pageable/payload/pageable/_operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/payload-pageable/payload/pageable/_operations/_patch.py index bbe39eaf695..b208fb11fbc 100644 --- a/packages/typespec-python/tests/generated/unbranded/payload-pageable/payload/pageable/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/payload-pageable/payload/pageable/_operations/_patch.py @@ -5,7 +5,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/payload-pageable/payload/pageable/_patch.py b/packages/typespec-python/tests/generated/unbranded/payload-pageable/payload/pageable/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/payload-pageable/payload/pageable/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/payload-pageable/payload/pageable/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/payload-pageable/payload/pageable/aio/_operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/payload-pageable/payload/pageable/aio/_operations/_patch.py index bbe39eaf695..b208fb11fbc 100644 --- a/packages/typespec-python/tests/generated/unbranded/payload-pageable/payload/pageable/aio/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/payload-pageable/payload/pageable/aio/_operations/_patch.py @@ -5,7 +5,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/payload-pageable/payload/pageable/aio/_patch.py b/packages/typespec-python/tests/generated/unbranded/payload-pageable/payload/pageable/aio/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/payload-pageable/payload/pageable/aio/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/payload-pageable/payload/pageable/aio/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/payload-pageable/payload/pageable/models/_patch.py b/packages/typespec-python/tests/generated/unbranded/payload-pageable/payload/pageable/models/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/payload-pageable/payload/pageable/models/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/payload-pageable/payload/pageable/models/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/payload-pageable/payload/pageable/pagesize/aio/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/payload-pageable/payload/pageable/pagesize/aio/operations/_patch.py index bbe39eaf695..b208fb11fbc 100644 --- a/packages/typespec-python/tests/generated/unbranded/payload-pageable/payload/pageable/pagesize/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/payload-pageable/payload/pageable/pagesize/aio/operations/_patch.py @@ -5,7 +5,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/payload-pageable/payload/pageable/pagesize/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/payload-pageable/payload/pageable/pagesize/operations/_patch.py index bbe39eaf695..b208fb11fbc 100644 --- a/packages/typespec-python/tests/generated/unbranded/payload-pageable/payload/pageable/pagesize/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/payload-pageable/payload/pageable/pagesize/operations/_patch.py @@ -5,7 +5,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/payload-pageable/payload/pageable/serverdrivenpagination/aio/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/payload-pageable/payload/pageable/serverdrivenpagination/aio/operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/payload-pageable/payload/pageable/serverdrivenpagination/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/payload-pageable/payload/pageable/serverdrivenpagination/aio/operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/payload-pageable/payload/pageable/serverdrivenpagination/alternateinitialverb/aio/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/payload-pageable/payload/pageable/serverdrivenpagination/alternateinitialverb/aio/operations/_patch.py index bbe39eaf695..b208fb11fbc 100644 --- a/packages/typespec-python/tests/generated/unbranded/payload-pageable/payload/pageable/serverdrivenpagination/alternateinitialverb/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/payload-pageable/payload/pageable/serverdrivenpagination/alternateinitialverb/aio/operations/_patch.py @@ -5,7 +5,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/payload-pageable/payload/pageable/serverdrivenpagination/alternateinitialverb/models/_patch.py b/packages/typespec-python/tests/generated/unbranded/payload-pageable/payload/pageable/serverdrivenpagination/alternateinitialverb/models/_patch.py index bbe39eaf695..b208fb11fbc 100644 --- a/packages/typespec-python/tests/generated/unbranded/payload-pageable/payload/pageable/serverdrivenpagination/alternateinitialverb/models/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/payload-pageable/payload/pageable/serverdrivenpagination/alternateinitialverb/models/_patch.py @@ -5,7 +5,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/payload-pageable/payload/pageable/serverdrivenpagination/alternateinitialverb/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/payload-pageable/payload/pageable/serverdrivenpagination/alternateinitialverb/operations/_patch.py index bbe39eaf695..b208fb11fbc 100644 --- a/packages/typespec-python/tests/generated/unbranded/payload-pageable/payload/pageable/serverdrivenpagination/alternateinitialverb/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/payload-pageable/payload/pageable/serverdrivenpagination/alternateinitialverb/operations/_patch.py @@ -5,7 +5,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/payload-pageable/payload/pageable/serverdrivenpagination/continuationtoken/aio/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/payload-pageable/payload/pageable/serverdrivenpagination/continuationtoken/aio/operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/payload-pageable/payload/pageable/serverdrivenpagination/continuationtoken/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/payload-pageable/payload/pageable/serverdrivenpagination/continuationtoken/aio/operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/payload-pageable/payload/pageable/serverdrivenpagination/continuationtoken/models/_patch.py b/packages/typespec-python/tests/generated/unbranded/payload-pageable/payload/pageable/serverdrivenpagination/continuationtoken/models/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/payload-pageable/payload/pageable/serverdrivenpagination/continuationtoken/models/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/payload-pageable/payload/pageable/serverdrivenpagination/continuationtoken/models/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/payload-pageable/payload/pageable/serverdrivenpagination/continuationtoken/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/payload-pageable/payload/pageable/serverdrivenpagination/continuationtoken/operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/payload-pageable/payload/pageable/serverdrivenpagination/continuationtoken/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/payload-pageable/payload/pageable/serverdrivenpagination/continuationtoken/operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/payload-pageable/payload/pageable/serverdrivenpagination/models/_patch.py b/packages/typespec-python/tests/generated/unbranded/payload-pageable/payload/pageable/serverdrivenpagination/models/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/payload-pageable/payload/pageable/serverdrivenpagination/models/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/payload-pageable/payload/pageable/serverdrivenpagination/models/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/payload-pageable/payload/pageable/serverdrivenpagination/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/payload-pageable/payload/pageable/serverdrivenpagination/operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/payload-pageable/payload/pageable/serverdrivenpagination/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/payload-pageable/payload/pageable/serverdrivenpagination/operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/payload-pageable/payload/pageable/xmlpagination/aio/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/payload-pageable/payload/pageable/xmlpagination/aio/operations/_patch.py index bbe39eaf695..b208fb11fbc 100644 --- a/packages/typespec-python/tests/generated/unbranded/payload-pageable/payload/pageable/xmlpagination/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/payload-pageable/payload/pageable/xmlpagination/aio/operations/_patch.py @@ -5,7 +5,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/payload-pageable/payload/pageable/xmlpagination/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/payload-pageable/payload/pageable/xmlpagination/operations/_patch.py index bbe39eaf695..b208fb11fbc 100644 --- a/packages/typespec-python/tests/generated/unbranded/payload-pageable/payload/pageable/xmlpagination/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/payload-pageable/payload/pageable/xmlpagination/operations/_patch.py @@ -5,7 +5,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/payload-xml/payload/xml/_patch.py b/packages/typespec-python/tests/generated/unbranded/payload-xml/payload/xml/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/payload-xml/payload/xml/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/payload-xml/payload/xml/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/payload-xml/payload/xml/aio/_patch.py b/packages/typespec-python/tests/generated/unbranded/payload-xml/payload/xml/aio/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/payload-xml/payload/xml/aio/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/payload-xml/payload/xml/aio/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/payload-xml/payload/xml/aio/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/payload-xml/payload/xml/aio/operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/payload-xml/payload/xml/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/payload-xml/payload/xml/aio/operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/payload-xml/payload/xml/models/_patch.py b/packages/typespec-python/tests/generated/unbranded/payload-xml/payload/xml/models/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/payload-xml/payload/xml/models/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/payload-xml/payload/xml/models/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/payload-xml/payload/xml/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/payload-xml/payload/xml/operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/payload-xml/payload/xml/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/payload-xml/payload/xml/operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/response-status-code-range/response/statuscoderange/_operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/response-status-code-range/response/statuscoderange/_operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/response-status-code-range/response/statuscoderange/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/response-status-code-range/response/statuscoderange/_operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/response-status-code-range/response/statuscoderange/_patch.py b/packages/typespec-python/tests/generated/unbranded/response-status-code-range/response/statuscoderange/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/response-status-code-range/response/statuscoderange/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/response-status-code-range/response/statuscoderange/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/response-status-code-range/response/statuscoderange/aio/_operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/response-status-code-range/response/statuscoderange/aio/_operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/response-status-code-range/response/statuscoderange/aio/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/response-status-code-range/response/statuscoderange/aio/_operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/response-status-code-range/response/statuscoderange/aio/_patch.py b/packages/typespec-python/tests/generated/unbranded/response-status-code-range/response/statuscoderange/aio/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/response-status-code-range/response/statuscoderange/aio/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/response-status-code-range/response/statuscoderange/aio/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/response-status-code-range/response/statuscoderange/models/_patch.py b/packages/typespec-python/tests/generated/unbranded/response-status-code-range/response/statuscoderange/models/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/response-status-code-range/response/statuscoderange/models/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/response-status-code-range/response/statuscoderange/models/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/routes/routes/_patch.py b/packages/typespec-python/tests/generated/unbranded/routes/routes/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/routes/routes/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/routes/routes/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/routes/routes/aio/_patch.py b/packages/typespec-python/tests/generated/unbranded/routes/routes/aio/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/routes/routes/aio/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/routes/routes/aio/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/routes/routes/aio/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/routes/routes/aio/operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/routes/routes/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/routes/routes/aio/operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/routes/routes/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/routes/routes/operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/routes/routes/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/routes/routes/operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/routes/routes/pathparameters/aio/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/routes/routes/pathparameters/aio/operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/routes/routes/pathparameters/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/routes/routes/pathparameters/aio/operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/routes/routes/pathparameters/labelexpansion/aio/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/routes/routes/pathparameters/labelexpansion/aio/operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/routes/routes/pathparameters/labelexpansion/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/routes/routes/pathparameters/labelexpansion/aio/operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/routes/routes/pathparameters/labelexpansion/explode/aio/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/routes/routes/pathparameters/labelexpansion/explode/aio/operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/routes/routes/pathparameters/labelexpansion/explode/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/routes/routes/pathparameters/labelexpansion/explode/aio/operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/routes/routes/pathparameters/labelexpansion/explode/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/routes/routes/pathparameters/labelexpansion/explode/operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/routes/routes/pathparameters/labelexpansion/explode/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/routes/routes/pathparameters/labelexpansion/explode/operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/routes/routes/pathparameters/labelexpansion/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/routes/routes/pathparameters/labelexpansion/operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/routes/routes/pathparameters/labelexpansion/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/routes/routes/pathparameters/labelexpansion/operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/routes/routes/pathparameters/labelexpansion/standard/aio/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/routes/routes/pathparameters/labelexpansion/standard/aio/operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/routes/routes/pathparameters/labelexpansion/standard/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/routes/routes/pathparameters/labelexpansion/standard/aio/operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/routes/routes/pathparameters/labelexpansion/standard/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/routes/routes/pathparameters/labelexpansion/standard/operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/routes/routes/pathparameters/labelexpansion/standard/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/routes/routes/pathparameters/labelexpansion/standard/operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/routes/routes/pathparameters/matrixexpansion/aio/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/routes/routes/pathparameters/matrixexpansion/aio/operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/routes/routes/pathparameters/matrixexpansion/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/routes/routes/pathparameters/matrixexpansion/aio/operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/routes/routes/pathparameters/matrixexpansion/explode/aio/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/routes/routes/pathparameters/matrixexpansion/explode/aio/operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/routes/routes/pathparameters/matrixexpansion/explode/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/routes/routes/pathparameters/matrixexpansion/explode/aio/operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/routes/routes/pathparameters/matrixexpansion/explode/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/routes/routes/pathparameters/matrixexpansion/explode/operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/routes/routes/pathparameters/matrixexpansion/explode/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/routes/routes/pathparameters/matrixexpansion/explode/operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/routes/routes/pathparameters/matrixexpansion/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/routes/routes/pathparameters/matrixexpansion/operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/routes/routes/pathparameters/matrixexpansion/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/routes/routes/pathparameters/matrixexpansion/operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/routes/routes/pathparameters/matrixexpansion/standard/aio/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/routes/routes/pathparameters/matrixexpansion/standard/aio/operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/routes/routes/pathparameters/matrixexpansion/standard/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/routes/routes/pathparameters/matrixexpansion/standard/aio/operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/routes/routes/pathparameters/matrixexpansion/standard/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/routes/routes/pathparameters/matrixexpansion/standard/operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/routes/routes/pathparameters/matrixexpansion/standard/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/routes/routes/pathparameters/matrixexpansion/standard/operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/routes/routes/pathparameters/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/routes/routes/pathparameters/operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/routes/routes/pathparameters/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/routes/routes/pathparameters/operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/routes/routes/pathparameters/pathexpansion/aio/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/routes/routes/pathparameters/pathexpansion/aio/operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/routes/routes/pathparameters/pathexpansion/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/routes/routes/pathparameters/pathexpansion/aio/operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/routes/routes/pathparameters/pathexpansion/explode/aio/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/routes/routes/pathparameters/pathexpansion/explode/aio/operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/routes/routes/pathparameters/pathexpansion/explode/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/routes/routes/pathparameters/pathexpansion/explode/aio/operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/routes/routes/pathparameters/pathexpansion/explode/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/routes/routes/pathparameters/pathexpansion/explode/operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/routes/routes/pathparameters/pathexpansion/explode/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/routes/routes/pathparameters/pathexpansion/explode/operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/routes/routes/pathparameters/pathexpansion/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/routes/routes/pathparameters/pathexpansion/operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/routes/routes/pathparameters/pathexpansion/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/routes/routes/pathparameters/pathexpansion/operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/routes/routes/pathparameters/pathexpansion/standard/aio/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/routes/routes/pathparameters/pathexpansion/standard/aio/operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/routes/routes/pathparameters/pathexpansion/standard/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/routes/routes/pathparameters/pathexpansion/standard/aio/operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/routes/routes/pathparameters/pathexpansion/standard/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/routes/routes/pathparameters/pathexpansion/standard/operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/routes/routes/pathparameters/pathexpansion/standard/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/routes/routes/pathparameters/pathexpansion/standard/operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/routes/routes/pathparameters/reservedexpansion/aio/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/routes/routes/pathparameters/reservedexpansion/aio/operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/routes/routes/pathparameters/reservedexpansion/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/routes/routes/pathparameters/reservedexpansion/aio/operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/routes/routes/pathparameters/reservedexpansion/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/routes/routes/pathparameters/reservedexpansion/operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/routes/routes/pathparameters/reservedexpansion/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/routes/routes/pathparameters/reservedexpansion/operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/routes/routes/pathparameters/simpleexpansion/aio/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/routes/routes/pathparameters/simpleexpansion/aio/operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/routes/routes/pathparameters/simpleexpansion/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/routes/routes/pathparameters/simpleexpansion/aio/operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/routes/routes/pathparameters/simpleexpansion/explode/aio/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/routes/routes/pathparameters/simpleexpansion/explode/aio/operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/routes/routes/pathparameters/simpleexpansion/explode/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/routes/routes/pathparameters/simpleexpansion/explode/aio/operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/routes/routes/pathparameters/simpleexpansion/explode/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/routes/routes/pathparameters/simpleexpansion/explode/operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/routes/routes/pathparameters/simpleexpansion/explode/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/routes/routes/pathparameters/simpleexpansion/explode/operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/routes/routes/pathparameters/simpleexpansion/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/routes/routes/pathparameters/simpleexpansion/operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/routes/routes/pathparameters/simpleexpansion/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/routes/routes/pathparameters/simpleexpansion/operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/routes/routes/pathparameters/simpleexpansion/standard/aio/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/routes/routes/pathparameters/simpleexpansion/standard/aio/operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/routes/routes/pathparameters/simpleexpansion/standard/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/routes/routes/pathparameters/simpleexpansion/standard/aio/operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/routes/routes/pathparameters/simpleexpansion/standard/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/routes/routes/pathparameters/simpleexpansion/standard/operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/routes/routes/pathparameters/simpleexpansion/standard/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/routes/routes/pathparameters/simpleexpansion/standard/operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/routes/routes/queryparameters/aio/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/routes/routes/queryparameters/aio/operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/routes/routes/queryparameters/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/routes/routes/queryparameters/aio/operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/routes/routes/queryparameters/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/routes/routes/queryparameters/operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/routes/routes/queryparameters/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/routes/routes/queryparameters/operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/routes/routes/queryparameters/querycontinuation/aio/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/routes/routes/queryparameters/querycontinuation/aio/operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/routes/routes/queryparameters/querycontinuation/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/routes/routes/queryparameters/querycontinuation/aio/operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/routes/routes/queryparameters/querycontinuation/explode/aio/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/routes/routes/queryparameters/querycontinuation/explode/aio/operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/routes/routes/queryparameters/querycontinuation/explode/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/routes/routes/queryparameters/querycontinuation/explode/aio/operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/routes/routes/queryparameters/querycontinuation/explode/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/routes/routes/queryparameters/querycontinuation/explode/operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/routes/routes/queryparameters/querycontinuation/explode/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/routes/routes/queryparameters/querycontinuation/explode/operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/routes/routes/queryparameters/querycontinuation/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/routes/routes/queryparameters/querycontinuation/operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/routes/routes/queryparameters/querycontinuation/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/routes/routes/queryparameters/querycontinuation/operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/routes/routes/queryparameters/querycontinuation/standard/aio/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/routes/routes/queryparameters/querycontinuation/standard/aio/operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/routes/routes/queryparameters/querycontinuation/standard/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/routes/routes/queryparameters/querycontinuation/standard/aio/operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/routes/routes/queryparameters/querycontinuation/standard/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/routes/routes/queryparameters/querycontinuation/standard/operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/routes/routes/queryparameters/querycontinuation/standard/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/routes/routes/queryparameters/querycontinuation/standard/operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/routes/routes/queryparameters/queryexpansion/aio/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/routes/routes/queryparameters/queryexpansion/aio/operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/routes/routes/queryparameters/queryexpansion/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/routes/routes/queryparameters/queryexpansion/aio/operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/routes/routes/queryparameters/queryexpansion/explode/aio/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/routes/routes/queryparameters/queryexpansion/explode/aio/operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/routes/routes/queryparameters/queryexpansion/explode/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/routes/routes/queryparameters/queryexpansion/explode/aio/operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/routes/routes/queryparameters/queryexpansion/explode/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/routes/routes/queryparameters/queryexpansion/explode/operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/routes/routes/queryparameters/queryexpansion/explode/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/routes/routes/queryparameters/queryexpansion/explode/operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/routes/routes/queryparameters/queryexpansion/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/routes/routes/queryparameters/queryexpansion/operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/routes/routes/queryparameters/queryexpansion/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/routes/routes/queryparameters/queryexpansion/operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/routes/routes/queryparameters/queryexpansion/standard/aio/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/routes/routes/queryparameters/queryexpansion/standard/aio/operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/routes/routes/queryparameters/queryexpansion/standard/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/routes/routes/queryparameters/queryexpansion/standard/aio/operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/routes/routes/queryparameters/queryexpansion/standard/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/routes/routes/queryparameters/queryexpansion/standard/operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/routes/routes/queryparameters/queryexpansion/standard/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/routes/routes/queryparameters/queryexpansion/standard/operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/serialization-encoded-name-json/serialization/encodedname/json/_patch.py b/packages/typespec-python/tests/generated/unbranded/serialization-encoded-name-json/serialization/encodedname/json/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/serialization-encoded-name-json/serialization/encodedname/json/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/serialization-encoded-name-json/serialization/encodedname/json/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/serialization-encoded-name-json/serialization/encodedname/json/aio/_patch.py b/packages/typespec-python/tests/generated/unbranded/serialization-encoded-name-json/serialization/encodedname/json/aio/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/serialization-encoded-name-json/serialization/encodedname/json/aio/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/serialization-encoded-name-json/serialization/encodedname/json/aio/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/serialization-encoded-name-json/serialization/encodedname/json/property/aio/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/serialization-encoded-name-json/serialization/encodedname/json/property/aio/operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/serialization-encoded-name-json/serialization/encodedname/json/property/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/serialization-encoded-name-json/serialization/encodedname/json/property/aio/operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/serialization-encoded-name-json/serialization/encodedname/json/property/models/_patch.py b/packages/typespec-python/tests/generated/unbranded/serialization-encoded-name-json/serialization/encodedname/json/property/models/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/serialization-encoded-name-json/serialization/encodedname/json/property/models/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/serialization-encoded-name-json/serialization/encodedname/json/property/models/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/serialization-encoded-name-json/serialization/encodedname/json/property/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/serialization-encoded-name-json/serialization/encodedname/json/property/operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/serialization-encoded-name-json/serialization/encodedname/json/property/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/serialization-encoded-name-json/serialization/encodedname/json/property/operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/server-endpoint-not-defined/server/endpoint/notdefined/_operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/server-endpoint-not-defined/server/endpoint/notdefined/_operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/server-endpoint-not-defined/server/endpoint/notdefined/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/server-endpoint-not-defined/server/endpoint/notdefined/_operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/server-endpoint-not-defined/server/endpoint/notdefined/_patch.py b/packages/typespec-python/tests/generated/unbranded/server-endpoint-not-defined/server/endpoint/notdefined/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/server-endpoint-not-defined/server/endpoint/notdefined/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/server-endpoint-not-defined/server/endpoint/notdefined/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/server-endpoint-not-defined/server/endpoint/notdefined/aio/_operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/server-endpoint-not-defined/server/endpoint/notdefined/aio/_operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/server-endpoint-not-defined/server/endpoint/notdefined/aio/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/server-endpoint-not-defined/server/endpoint/notdefined/aio/_operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/server-endpoint-not-defined/server/endpoint/notdefined/aio/_patch.py b/packages/typespec-python/tests/generated/unbranded/server-endpoint-not-defined/server/endpoint/notdefined/aio/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/server-endpoint-not-defined/server/endpoint/notdefined/aio/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/server-endpoint-not-defined/server/endpoint/notdefined/aio/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/server-path-multiple/server/path/multiple/_operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/server-path-multiple/server/path/multiple/_operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/server-path-multiple/server/path/multiple/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/server-path-multiple/server/path/multiple/_operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/server-path-multiple/server/path/multiple/_patch.py b/packages/typespec-python/tests/generated/unbranded/server-path-multiple/server/path/multiple/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/server-path-multiple/server/path/multiple/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/server-path-multiple/server/path/multiple/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/server-path-multiple/server/path/multiple/aio/_operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/server-path-multiple/server/path/multiple/aio/_operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/server-path-multiple/server/path/multiple/aio/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/server-path-multiple/server/path/multiple/aio/_operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/server-path-multiple/server/path/multiple/aio/_patch.py b/packages/typespec-python/tests/generated/unbranded/server-path-multiple/server/path/multiple/aio/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/server-path-multiple/server/path/multiple/aio/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/server-path-multiple/server/path/multiple/aio/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/server-path-multiple/server/path/multiple/models/_patch.py b/packages/typespec-python/tests/generated/unbranded/server-path-multiple/server/path/multiple/models/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/server-path-multiple/server/path/multiple/models/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/server-path-multiple/server/path/multiple/models/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/server-path-single/server/path/single/_operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/server-path-single/server/path/single/_operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/server-path-single/server/path/single/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/server-path-single/server/path/single/_operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/server-path-single/server/path/single/_patch.py b/packages/typespec-python/tests/generated/unbranded/server-path-single/server/path/single/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/server-path-single/server/path/single/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/server-path-single/server/path/single/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/server-path-single/server/path/single/aio/_operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/server-path-single/server/path/single/aio/_operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/server-path-single/server/path/single/aio/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/server-path-single/server/path/single/aio/_operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/server-path-single/server/path/single/aio/_patch.py b/packages/typespec-python/tests/generated/unbranded/server-path-single/server/path/single/aio/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/server-path-single/server/path/single/aio/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/server-path-single/server/path/single/aio/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/server-versions-not-versioned/server/versions/notversioned/_operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/server-versions-not-versioned/server/versions/notversioned/_operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/server-versions-not-versioned/server/versions/notversioned/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/server-versions-not-versioned/server/versions/notversioned/_operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/server-versions-not-versioned/server/versions/notversioned/_patch.py b/packages/typespec-python/tests/generated/unbranded/server-versions-not-versioned/server/versions/notversioned/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/server-versions-not-versioned/server/versions/notversioned/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/server-versions-not-versioned/server/versions/notversioned/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/server-versions-not-versioned/server/versions/notversioned/aio/_operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/server-versions-not-versioned/server/versions/notversioned/aio/_operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/server-versions-not-versioned/server/versions/notversioned/aio/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/server-versions-not-versioned/server/versions/notversioned/aio/_operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/server-versions-not-versioned/server/versions/notversioned/aio/_patch.py b/packages/typespec-python/tests/generated/unbranded/server-versions-not-versioned/server/versions/notversioned/aio/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/server-versions-not-versioned/server/versions/notversioned/aio/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/server-versions-not-versioned/server/versions/notversioned/aio/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/server-versions-versioned/server/versions/versioned/_operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/server-versions-versioned/server/versions/versioned/_operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/server-versions-versioned/server/versions/versioned/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/server-versions-versioned/server/versions/versioned/_operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/server-versions-versioned/server/versions/versioned/_patch.py b/packages/typespec-python/tests/generated/unbranded/server-versions-versioned/server/versions/versioned/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/server-versions-versioned/server/versions/versioned/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/server-versions-versioned/server/versions/versioned/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/server-versions-versioned/server/versions/versioned/aio/_operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/server-versions-versioned/server/versions/versioned/aio/_operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/server-versions-versioned/server/versions/versioned/aio/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/server-versions-versioned/server/versions/versioned/aio/_operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/server-versions-versioned/server/versions/versioned/aio/_patch.py b/packages/typespec-python/tests/generated/unbranded/server-versions-versioned/server/versions/versioned/aio/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/server-versions-versioned/server/versions/versioned/aio/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/server-versions-versioned/server/versions/versioned/aio/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/setuppy-authentication-union/setup.py b/packages/typespec-python/tests/generated/unbranded/setuppy-authentication-union/setup.py index f18e1fd4ca4..f3733602872 100644 --- a/packages/typespec-python/tests/generated/unbranded/setuppy-authentication-union/setup.py +++ b/packages/typespec-python/tests/generated/unbranded/setuppy-authentication-union/setup.py @@ -5,7 +5,6 @@ import re from setuptools import setup, find_packages - PACKAGE_NAME = "setuppy-authentication-union" PACKAGE_PPRINT_NAME = "Setuppy Authentication Union" PACKAGE_NAMESPACE = "setuppy.authentication.union" diff --git a/packages/typespec-python/tests/generated/unbranded/setuppy-authentication-union/setuppy/authentication/union/_operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/setuppy-authentication-union/setuppy/authentication/union/_operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/setuppy-authentication-union/setuppy/authentication/union/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/setuppy-authentication-union/setuppy/authentication/union/_operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/setuppy-authentication-union/setuppy/authentication/union/_patch.py b/packages/typespec-python/tests/generated/unbranded/setuppy-authentication-union/setuppy/authentication/union/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/setuppy-authentication-union/setuppy/authentication/union/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/setuppy-authentication-union/setuppy/authentication/union/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/setuppy-authentication-union/setuppy/authentication/union/aio/_operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/setuppy-authentication-union/setuppy/authentication/union/aio/_operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/setuppy-authentication-union/setuppy/authentication/union/aio/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/setuppy-authentication-union/setuppy/authentication/union/aio/_operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/setuppy-authentication-union/setuppy/authentication/union/aio/_patch.py b/packages/typespec-python/tests/generated/unbranded/setuppy-authentication-union/setuppy/authentication/union/aio/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/setuppy-authentication-union/setuppy/authentication/union/aio/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/setuppy-authentication-union/setuppy/authentication/union/aio/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/special-headers-conditional-request/specialheaders/conditionalrequest/_operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/special-headers-conditional-request/specialheaders/conditionalrequest/_operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/special-headers-conditional-request/specialheaders/conditionalrequest/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/special-headers-conditional-request/specialheaders/conditionalrequest/_operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/special-headers-conditional-request/specialheaders/conditionalrequest/_patch.py b/packages/typespec-python/tests/generated/unbranded/special-headers-conditional-request/specialheaders/conditionalrequest/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/special-headers-conditional-request/specialheaders/conditionalrequest/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/special-headers-conditional-request/specialheaders/conditionalrequest/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/special-headers-conditional-request/specialheaders/conditionalrequest/aio/_operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/special-headers-conditional-request/specialheaders/conditionalrequest/aio/_operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/special-headers-conditional-request/specialheaders/conditionalrequest/aio/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/special-headers-conditional-request/specialheaders/conditionalrequest/aio/_operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/special-headers-conditional-request/specialheaders/conditionalrequest/aio/_patch.py b/packages/typespec-python/tests/generated/unbranded/special-headers-conditional-request/specialheaders/conditionalrequest/aio/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/special-headers-conditional-request/specialheaders/conditionalrequest/aio/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/special-headers-conditional-request/specialheaders/conditionalrequest/aio/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/special-headers-repeatability/specialheaders/repeatability/_operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/special-headers-repeatability/specialheaders/repeatability/_operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/special-headers-repeatability/specialheaders/repeatability/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/special-headers-repeatability/specialheaders/repeatability/_operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/special-headers-repeatability/specialheaders/repeatability/_patch.py b/packages/typespec-python/tests/generated/unbranded/special-headers-repeatability/specialheaders/repeatability/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/special-headers-repeatability/specialheaders/repeatability/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/special-headers-repeatability/specialheaders/repeatability/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/special-headers-repeatability/specialheaders/repeatability/aio/_operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/special-headers-repeatability/specialheaders/repeatability/aio/_operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/special-headers-repeatability/specialheaders/repeatability/aio/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/special-headers-repeatability/specialheaders/repeatability/aio/_operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/special-headers-repeatability/specialheaders/repeatability/aio/_patch.py b/packages/typespec-python/tests/generated/unbranded/special-headers-repeatability/specialheaders/repeatability/aio/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/special-headers-repeatability/specialheaders/repeatability/aio/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/special-headers-repeatability/specialheaders/repeatability/aio/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/special-words/specialwords/_patch.py b/packages/typespec-python/tests/generated/unbranded/special-words/specialwords/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/special-words/specialwords/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/special-words/specialwords/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/special-words/specialwords/aio/_patch.py b/packages/typespec-python/tests/generated/unbranded/special-words/specialwords/aio/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/special-words/specialwords/aio/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/special-words/specialwords/aio/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/special-words/specialwords/aio/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/special-words/specialwords/aio/operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/special-words/specialwords/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/special-words/specialwords/aio/operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/special-words/specialwords/extensiblestrings/aio/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/special-words/specialwords/extensiblestrings/aio/operations/_patch.py index bbe39eaf695..b208fb11fbc 100644 --- a/packages/typespec-python/tests/generated/unbranded/special-words/specialwords/extensiblestrings/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/special-words/specialwords/extensiblestrings/aio/operations/_patch.py @@ -5,7 +5,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/special-words/specialwords/extensiblestrings/models/_patch.py b/packages/typespec-python/tests/generated/unbranded/special-words/specialwords/extensiblestrings/models/_patch.py index bbe39eaf695..b208fb11fbc 100644 --- a/packages/typespec-python/tests/generated/unbranded/special-words/specialwords/extensiblestrings/models/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/special-words/specialwords/extensiblestrings/models/_patch.py @@ -5,7 +5,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/special-words/specialwords/extensiblestrings/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/special-words/specialwords/extensiblestrings/operations/_patch.py index bbe39eaf695..b208fb11fbc 100644 --- a/packages/typespec-python/tests/generated/unbranded/special-words/specialwords/extensiblestrings/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/special-words/specialwords/extensiblestrings/operations/_patch.py @@ -5,7 +5,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/special-words/specialwords/modelproperties/aio/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/special-words/specialwords/modelproperties/aio/operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/special-words/specialwords/modelproperties/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/special-words/specialwords/modelproperties/aio/operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/special-words/specialwords/modelproperties/models/_patch.py b/packages/typespec-python/tests/generated/unbranded/special-words/specialwords/modelproperties/models/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/special-words/specialwords/modelproperties/models/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/special-words/specialwords/modelproperties/models/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/special-words/specialwords/modelproperties/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/special-words/specialwords/modelproperties/operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/special-words/specialwords/modelproperties/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/special-words/specialwords/modelproperties/operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/special-words/specialwords/models/aio/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/special-words/specialwords/models/aio/operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/special-words/specialwords/models/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/special-words/specialwords/models/aio/operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/special-words/specialwords/models/models/_patch.py b/packages/typespec-python/tests/generated/unbranded/special-words/specialwords/models/models/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/special-words/specialwords/models/models/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/special-words/specialwords/models/models/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/special-words/specialwords/models/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/special-words/specialwords/models/operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/special-words/specialwords/models/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/special-words/specialwords/models/operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/special-words/specialwords/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/special-words/specialwords/operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/special-words/specialwords/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/special-words/specialwords/operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/specs-documentation/specs/documentation/_patch.py b/packages/typespec-python/tests/generated/unbranded/specs-documentation/specs/documentation/_patch.py index bbe39eaf695..b208fb11fbc 100644 --- a/packages/typespec-python/tests/generated/unbranded/specs-documentation/specs/documentation/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/specs-documentation/specs/documentation/_patch.py @@ -5,7 +5,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/specs-documentation/specs/documentation/aio/_patch.py b/packages/typespec-python/tests/generated/unbranded/specs-documentation/specs/documentation/aio/_patch.py index bbe39eaf695..b208fb11fbc 100644 --- a/packages/typespec-python/tests/generated/unbranded/specs-documentation/specs/documentation/aio/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/specs-documentation/specs/documentation/aio/_patch.py @@ -5,7 +5,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/specs-documentation/specs/documentation/aio/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/specs-documentation/specs/documentation/aio/operations/_patch.py index bbe39eaf695..b208fb11fbc 100644 --- a/packages/typespec-python/tests/generated/unbranded/specs-documentation/specs/documentation/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/specs-documentation/specs/documentation/aio/operations/_patch.py @@ -5,7 +5,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/specs-documentation/specs/documentation/models/_patch.py b/packages/typespec-python/tests/generated/unbranded/specs-documentation/specs/documentation/models/_patch.py index bbe39eaf695..b208fb11fbc 100644 --- a/packages/typespec-python/tests/generated/unbranded/specs-documentation/specs/documentation/models/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/specs-documentation/specs/documentation/models/_patch.py @@ -5,7 +5,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/specs-documentation/specs/documentation/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/specs-documentation/specs/documentation/operations/_patch.py index bbe39eaf695..b208fb11fbc 100644 --- a/packages/typespec-python/tests/generated/unbranded/specs-documentation/specs/documentation/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/specs-documentation/specs/documentation/operations/_patch.py @@ -5,7 +5,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/streaming-jsonl/streaming/jsonl/_patch.py b/packages/typespec-python/tests/generated/unbranded/streaming-jsonl/streaming/jsonl/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/streaming-jsonl/streaming/jsonl/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/streaming-jsonl/streaming/jsonl/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/streaming-jsonl/streaming/jsonl/aio/_patch.py b/packages/typespec-python/tests/generated/unbranded/streaming-jsonl/streaming/jsonl/aio/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/streaming-jsonl/streaming/jsonl/aio/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/streaming-jsonl/streaming/jsonl/aio/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/streaming-jsonl/streaming/jsonl/basic/aio/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/streaming-jsonl/streaming/jsonl/basic/aio/operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/streaming-jsonl/streaming/jsonl/basic/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/streaming-jsonl/streaming/jsonl/basic/aio/operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/streaming-jsonl/streaming/jsonl/basic/models/_patch.py b/packages/typespec-python/tests/generated/unbranded/streaming-jsonl/streaming/jsonl/basic/models/_patch.py index bbe39eaf695..b208fb11fbc 100644 --- a/packages/typespec-python/tests/generated/unbranded/streaming-jsonl/streaming/jsonl/basic/models/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/streaming-jsonl/streaming/jsonl/basic/models/_patch.py @@ -5,7 +5,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/streaming-jsonl/streaming/jsonl/basic/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/streaming-jsonl/streaming/jsonl/basic/operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/streaming-jsonl/streaming/jsonl/basic/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/streaming-jsonl/streaming/jsonl/basic/operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/typetest-array/typetest/array/_patch.py b/packages/typespec-python/tests/generated/unbranded/typetest-array/typetest/array/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/typetest-array/typetest/array/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/typetest-array/typetest/array/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/typetest-array/typetest/array/aio/_patch.py b/packages/typespec-python/tests/generated/unbranded/typetest-array/typetest/array/aio/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/typetest-array/typetest/array/aio/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/typetest-array/typetest/array/aio/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/typetest-array/typetest/array/aio/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/typetest-array/typetest/array/aio/operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/typetest-array/typetest/array/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/typetest-array/typetest/array/aio/operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/typetest-array/typetest/array/models/_patch.py b/packages/typespec-python/tests/generated/unbranded/typetest-array/typetest/array/models/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/typetest-array/typetest/array/models/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/typetest-array/typetest/array/models/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/typetest-array/typetest/array/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/typetest-array/typetest/array/operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/typetest-array/typetest/array/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/typetest-array/typetest/array/operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/typetest-dictionary/typetest/dictionary/_patch.py b/packages/typespec-python/tests/generated/unbranded/typetest-dictionary/typetest/dictionary/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/typetest-dictionary/typetest/dictionary/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/typetest-dictionary/typetest/dictionary/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/typetest-dictionary/typetest/dictionary/aio/_patch.py b/packages/typespec-python/tests/generated/unbranded/typetest-dictionary/typetest/dictionary/aio/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/typetest-dictionary/typetest/dictionary/aio/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/typetest-dictionary/typetest/dictionary/aio/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/typetest-dictionary/typetest/dictionary/aio/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/typetest-dictionary/typetest/dictionary/aio/operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/typetest-dictionary/typetest/dictionary/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/typetest-dictionary/typetest/dictionary/aio/operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/typetest-dictionary/typetest/dictionary/models/_patch.py b/packages/typespec-python/tests/generated/unbranded/typetest-dictionary/typetest/dictionary/models/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/typetest-dictionary/typetest/dictionary/models/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/typetest-dictionary/typetest/dictionary/models/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/typetest-dictionary/typetest/dictionary/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/typetest-dictionary/typetest/dictionary/operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/typetest-dictionary/typetest/dictionary/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/typetest-dictionary/typetest/dictionary/operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/typetest-discriminatedunion/typetest/discriminatedunion/_patch.py b/packages/typespec-python/tests/generated/unbranded/typetest-discriminatedunion/typetest/discriminatedunion/_patch.py index bbe39eaf695..b208fb11fbc 100644 --- a/packages/typespec-python/tests/generated/unbranded/typetest-discriminatedunion/typetest/discriminatedunion/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/typetest-discriminatedunion/typetest/discriminatedunion/_patch.py @@ -5,7 +5,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/typetest-discriminatedunion/typetest/discriminatedunion/aio/_patch.py b/packages/typespec-python/tests/generated/unbranded/typetest-discriminatedunion/typetest/discriminatedunion/aio/_patch.py index bbe39eaf695..b208fb11fbc 100644 --- a/packages/typespec-python/tests/generated/unbranded/typetest-discriminatedunion/typetest/discriminatedunion/aio/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/typetest-discriminatedunion/typetest/discriminatedunion/aio/_patch.py @@ -5,7 +5,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/typetest-discriminatedunion/typetest/discriminatedunion/aio/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/typetest-discriminatedunion/typetest/discriminatedunion/aio/operations/_patch.py index bbe39eaf695..b208fb11fbc 100644 --- a/packages/typespec-python/tests/generated/unbranded/typetest-discriminatedunion/typetest/discriminatedunion/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/typetest-discriminatedunion/typetest/discriminatedunion/aio/operations/_patch.py @@ -5,7 +5,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/typetest-discriminatedunion/typetest/discriminatedunion/models/_patch.py b/packages/typespec-python/tests/generated/unbranded/typetest-discriminatedunion/typetest/discriminatedunion/models/_patch.py index bbe39eaf695..b208fb11fbc 100644 --- a/packages/typespec-python/tests/generated/unbranded/typetest-discriminatedunion/typetest/discriminatedunion/models/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/typetest-discriminatedunion/typetest/discriminatedunion/models/_patch.py @@ -5,7 +5,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/typetest-discriminatedunion/typetest/discriminatedunion/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/typetest-discriminatedunion/typetest/discriminatedunion/operations/_patch.py index bbe39eaf695..b208fb11fbc 100644 --- a/packages/typespec-python/tests/generated/unbranded/typetest-discriminatedunion/typetest/discriminatedunion/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/typetest-discriminatedunion/typetest/discriminatedunion/operations/_patch.py @@ -5,7 +5,6 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ - __all__: list[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/typetest-enum-extensible/typetest/enum/extensible/_patch.py b/packages/typespec-python/tests/generated/unbranded/typetest-enum-extensible/typetest/enum/extensible/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/typetest-enum-extensible/typetest/enum/extensible/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/typetest-enum-extensible/typetest/enum/extensible/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/typetest-enum-extensible/typetest/enum/extensible/aio/_patch.py b/packages/typespec-python/tests/generated/unbranded/typetest-enum-extensible/typetest/enum/extensible/aio/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/typetest-enum-extensible/typetest/enum/extensible/aio/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/typetest-enum-extensible/typetest/enum/extensible/aio/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/typetest-enum-extensible/typetest/enum/extensible/aio/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/typetest-enum-extensible/typetest/enum/extensible/aio/operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/typetest-enum-extensible/typetest/enum/extensible/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/typetest-enum-extensible/typetest/enum/extensible/aio/operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/typetest-enum-extensible/typetest/enum/extensible/models/_patch.py b/packages/typespec-python/tests/generated/unbranded/typetest-enum-extensible/typetest/enum/extensible/models/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/typetest-enum-extensible/typetest/enum/extensible/models/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/typetest-enum-extensible/typetest/enum/extensible/models/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/typetest-enum-extensible/typetest/enum/extensible/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/typetest-enum-extensible/typetest/enum/extensible/operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/typetest-enum-extensible/typetest/enum/extensible/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/typetest-enum-extensible/typetest/enum/extensible/operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/typetest-enum-fixed/typetest/enum/fixed/_patch.py b/packages/typespec-python/tests/generated/unbranded/typetest-enum-fixed/typetest/enum/fixed/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/typetest-enum-fixed/typetest/enum/fixed/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/typetest-enum-fixed/typetest/enum/fixed/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/typetest-enum-fixed/typetest/enum/fixed/aio/_patch.py b/packages/typespec-python/tests/generated/unbranded/typetest-enum-fixed/typetest/enum/fixed/aio/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/typetest-enum-fixed/typetest/enum/fixed/aio/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/typetest-enum-fixed/typetest/enum/fixed/aio/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/typetest-enum-fixed/typetest/enum/fixed/aio/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/typetest-enum-fixed/typetest/enum/fixed/aio/operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/typetest-enum-fixed/typetest/enum/fixed/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/typetest-enum-fixed/typetest/enum/fixed/aio/operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/typetest-enum-fixed/typetest/enum/fixed/models/_patch.py b/packages/typespec-python/tests/generated/unbranded/typetest-enum-fixed/typetest/enum/fixed/models/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/typetest-enum-fixed/typetest/enum/fixed/models/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/typetest-enum-fixed/typetest/enum/fixed/models/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/typetest-enum-fixed/typetest/enum/fixed/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/typetest-enum-fixed/typetest/enum/fixed/operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/typetest-enum-fixed/typetest/enum/fixed/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/typetest-enum-fixed/typetest/enum/fixed/operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/typetest-model-empty/typetest/model/empty/_operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/typetest-model-empty/typetest/model/empty/_operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/typetest-model-empty/typetest/model/empty/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/typetest-model-empty/typetest/model/empty/_operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/typetest-model-empty/typetest/model/empty/_patch.py b/packages/typespec-python/tests/generated/unbranded/typetest-model-empty/typetest/model/empty/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/typetest-model-empty/typetest/model/empty/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/typetest-model-empty/typetest/model/empty/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/typetest-model-empty/typetest/model/empty/aio/_operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/typetest-model-empty/typetest/model/empty/aio/_operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/typetest-model-empty/typetest/model/empty/aio/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/typetest-model-empty/typetest/model/empty/aio/_operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/typetest-model-empty/typetest/model/empty/aio/_patch.py b/packages/typespec-python/tests/generated/unbranded/typetest-model-empty/typetest/model/empty/aio/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/typetest-model-empty/typetest/model/empty/aio/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/typetest-model-empty/typetest/model/empty/aio/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/typetest-model-empty/typetest/model/empty/models/_patch.py b/packages/typespec-python/tests/generated/unbranded/typetest-model-empty/typetest/model/empty/models/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/typetest-model-empty/typetest/model/empty/models/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/typetest-model-empty/typetest/model/empty/models/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/typetest-model-enumdiscriminator/typetest/model/enumdiscriminator/_operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/typetest-model-enumdiscriminator/typetest/model/enumdiscriminator/_operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/typetest-model-enumdiscriminator/typetest/model/enumdiscriminator/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/typetest-model-enumdiscriminator/typetest/model/enumdiscriminator/_operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/typetest-model-enumdiscriminator/typetest/model/enumdiscriminator/_patch.py b/packages/typespec-python/tests/generated/unbranded/typetest-model-enumdiscriminator/typetest/model/enumdiscriminator/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/typetest-model-enumdiscriminator/typetest/model/enumdiscriminator/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/typetest-model-enumdiscriminator/typetest/model/enumdiscriminator/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/typetest-model-enumdiscriminator/typetest/model/enumdiscriminator/aio/_operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/typetest-model-enumdiscriminator/typetest/model/enumdiscriminator/aio/_operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/typetest-model-enumdiscriminator/typetest/model/enumdiscriminator/aio/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/typetest-model-enumdiscriminator/typetest/model/enumdiscriminator/aio/_operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/typetest-model-enumdiscriminator/typetest/model/enumdiscriminator/aio/_patch.py b/packages/typespec-python/tests/generated/unbranded/typetest-model-enumdiscriminator/typetest/model/enumdiscriminator/aio/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/typetest-model-enumdiscriminator/typetest/model/enumdiscriminator/aio/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/typetest-model-enumdiscriminator/typetest/model/enumdiscriminator/aio/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/typetest-model-enumdiscriminator/typetest/model/enumdiscriminator/models/_patch.py b/packages/typespec-python/tests/generated/unbranded/typetest-model-enumdiscriminator/typetest/model/enumdiscriminator/models/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/typetest-model-enumdiscriminator/typetest/model/enumdiscriminator/models/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/typetest-model-enumdiscriminator/typetest/model/enumdiscriminator/models/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/typetest-model-nesteddiscriminator/typetest/model/nesteddiscriminator/_operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/typetest-model-nesteddiscriminator/typetest/model/nesteddiscriminator/_operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/typetest-model-nesteddiscriminator/typetest/model/nesteddiscriminator/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/typetest-model-nesteddiscriminator/typetest/model/nesteddiscriminator/_operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/typetest-model-nesteddiscriminator/typetest/model/nesteddiscriminator/_patch.py b/packages/typespec-python/tests/generated/unbranded/typetest-model-nesteddiscriminator/typetest/model/nesteddiscriminator/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/typetest-model-nesteddiscriminator/typetest/model/nesteddiscriminator/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/typetest-model-nesteddiscriminator/typetest/model/nesteddiscriminator/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/typetest-model-nesteddiscriminator/typetest/model/nesteddiscriminator/aio/_operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/typetest-model-nesteddiscriminator/typetest/model/nesteddiscriminator/aio/_operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/typetest-model-nesteddiscriminator/typetest/model/nesteddiscriminator/aio/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/typetest-model-nesteddiscriminator/typetest/model/nesteddiscriminator/aio/_operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/typetest-model-nesteddiscriminator/typetest/model/nesteddiscriminator/aio/_patch.py b/packages/typespec-python/tests/generated/unbranded/typetest-model-nesteddiscriminator/typetest/model/nesteddiscriminator/aio/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/typetest-model-nesteddiscriminator/typetest/model/nesteddiscriminator/aio/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/typetest-model-nesteddiscriminator/typetest/model/nesteddiscriminator/aio/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/typetest-model-nesteddiscriminator/typetest/model/nesteddiscriminator/models/_patch.py b/packages/typespec-python/tests/generated/unbranded/typetest-model-nesteddiscriminator/typetest/model/nesteddiscriminator/models/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/typetest-model-nesteddiscriminator/typetest/model/nesteddiscriminator/models/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/typetest-model-nesteddiscriminator/typetest/model/nesteddiscriminator/models/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/typetest-model-notdiscriminated/typetest/model/notdiscriminated/_operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/typetest-model-notdiscriminated/typetest/model/notdiscriminated/_operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/typetest-model-notdiscriminated/typetest/model/notdiscriminated/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/typetest-model-notdiscriminated/typetest/model/notdiscriminated/_operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/typetest-model-notdiscriminated/typetest/model/notdiscriminated/_patch.py b/packages/typespec-python/tests/generated/unbranded/typetest-model-notdiscriminated/typetest/model/notdiscriminated/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/typetest-model-notdiscriminated/typetest/model/notdiscriminated/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/typetest-model-notdiscriminated/typetest/model/notdiscriminated/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/typetest-model-notdiscriminated/typetest/model/notdiscriminated/aio/_operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/typetest-model-notdiscriminated/typetest/model/notdiscriminated/aio/_operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/typetest-model-notdiscriminated/typetest/model/notdiscriminated/aio/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/typetest-model-notdiscriminated/typetest/model/notdiscriminated/aio/_operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/typetest-model-notdiscriminated/typetest/model/notdiscriminated/aio/_patch.py b/packages/typespec-python/tests/generated/unbranded/typetest-model-notdiscriminated/typetest/model/notdiscriminated/aio/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/typetest-model-notdiscriminated/typetest/model/notdiscriminated/aio/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/typetest-model-notdiscriminated/typetest/model/notdiscriminated/aio/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/typetest-model-notdiscriminated/typetest/model/notdiscriminated/models/_patch.py b/packages/typespec-python/tests/generated/unbranded/typetest-model-notdiscriminated/typetest/model/notdiscriminated/models/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/typetest-model-notdiscriminated/typetest/model/notdiscriminated/models/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/typetest-model-notdiscriminated/typetest/model/notdiscriminated/models/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/typetest-model-recursive/typetest/model/recursive/_operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/typetest-model-recursive/typetest/model/recursive/_operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/typetest-model-recursive/typetest/model/recursive/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/typetest-model-recursive/typetest/model/recursive/_operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/typetest-model-recursive/typetest/model/recursive/_patch.py b/packages/typespec-python/tests/generated/unbranded/typetest-model-recursive/typetest/model/recursive/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/typetest-model-recursive/typetest/model/recursive/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/typetest-model-recursive/typetest/model/recursive/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/typetest-model-recursive/typetest/model/recursive/aio/_operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/typetest-model-recursive/typetest/model/recursive/aio/_operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/typetest-model-recursive/typetest/model/recursive/aio/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/typetest-model-recursive/typetest/model/recursive/aio/_operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/typetest-model-recursive/typetest/model/recursive/aio/_patch.py b/packages/typespec-python/tests/generated/unbranded/typetest-model-recursive/typetest/model/recursive/aio/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/typetest-model-recursive/typetest/model/recursive/aio/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/typetest-model-recursive/typetest/model/recursive/aio/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/typetest-model-recursive/typetest/model/recursive/models/_patch.py b/packages/typespec-python/tests/generated/unbranded/typetest-model-recursive/typetest/model/recursive/models/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/typetest-model-recursive/typetest/model/recursive/models/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/typetest-model-recursive/typetest/model/recursive/models/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/typetest-model-singlediscriminator/typetest/model/singlediscriminator/_operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/typetest-model-singlediscriminator/typetest/model/singlediscriminator/_operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/typetest-model-singlediscriminator/typetest/model/singlediscriminator/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/typetest-model-singlediscriminator/typetest/model/singlediscriminator/_operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/typetest-model-singlediscriminator/typetest/model/singlediscriminator/_patch.py b/packages/typespec-python/tests/generated/unbranded/typetest-model-singlediscriminator/typetest/model/singlediscriminator/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/typetest-model-singlediscriminator/typetest/model/singlediscriminator/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/typetest-model-singlediscriminator/typetest/model/singlediscriminator/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/typetest-model-singlediscriminator/typetest/model/singlediscriminator/aio/_operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/typetest-model-singlediscriminator/typetest/model/singlediscriminator/aio/_operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/typetest-model-singlediscriminator/typetest/model/singlediscriminator/aio/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/typetest-model-singlediscriminator/typetest/model/singlediscriminator/aio/_operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/typetest-model-singlediscriminator/typetest/model/singlediscriminator/aio/_patch.py b/packages/typespec-python/tests/generated/unbranded/typetest-model-singlediscriminator/typetest/model/singlediscriminator/aio/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/typetest-model-singlediscriminator/typetest/model/singlediscriminator/aio/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/typetest-model-singlediscriminator/typetest/model/singlediscriminator/aio/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/typetest-model-singlediscriminator/typetest/model/singlediscriminator/models/_patch.py b/packages/typespec-python/tests/generated/unbranded/typetest-model-singlediscriminator/typetest/model/singlediscriminator/models/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/typetest-model-singlediscriminator/typetest/model/singlediscriminator/models/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/typetest-model-singlediscriminator/typetest/model/singlediscriminator/models/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/typetest-model-usage/typetest/model/usage/_operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/typetest-model-usage/typetest/model/usage/_operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/typetest-model-usage/typetest/model/usage/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/typetest-model-usage/typetest/model/usage/_operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/typetest-model-usage/typetest/model/usage/_patch.py b/packages/typespec-python/tests/generated/unbranded/typetest-model-usage/typetest/model/usage/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/typetest-model-usage/typetest/model/usage/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/typetest-model-usage/typetest/model/usage/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/typetest-model-usage/typetest/model/usage/aio/_operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/typetest-model-usage/typetest/model/usage/aio/_operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/typetest-model-usage/typetest/model/usage/aio/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/typetest-model-usage/typetest/model/usage/aio/_operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/typetest-model-usage/typetest/model/usage/aio/_patch.py b/packages/typespec-python/tests/generated/unbranded/typetest-model-usage/typetest/model/usage/aio/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/typetest-model-usage/typetest/model/usage/aio/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/typetest-model-usage/typetest/model/usage/aio/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/typetest-model-usage/typetest/model/usage/models/_patch.py b/packages/typespec-python/tests/generated/unbranded/typetest-model-usage/typetest/model/usage/models/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/typetest-model-usage/typetest/model/usage/models/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/typetest-model-usage/typetest/model/usage/models/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/typetest-model-visibility/typetest/model/visibility/_operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/typetest-model-visibility/typetest/model/visibility/_operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/typetest-model-visibility/typetest/model/visibility/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/typetest-model-visibility/typetest/model/visibility/_operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/typetest-model-visibility/typetest/model/visibility/_patch.py b/packages/typespec-python/tests/generated/unbranded/typetest-model-visibility/typetest/model/visibility/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/typetest-model-visibility/typetest/model/visibility/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/typetest-model-visibility/typetest/model/visibility/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/typetest-model-visibility/typetest/model/visibility/aio/_operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/typetest-model-visibility/typetest/model/visibility/aio/_operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/typetest-model-visibility/typetest/model/visibility/aio/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/typetest-model-visibility/typetest/model/visibility/aio/_operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/typetest-model-visibility/typetest/model/visibility/aio/_patch.py b/packages/typespec-python/tests/generated/unbranded/typetest-model-visibility/typetest/model/visibility/aio/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/typetest-model-visibility/typetest/model/visibility/aio/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/typetest-model-visibility/typetest/model/visibility/aio/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/typetest-model-visibility/typetest/model/visibility/models/_patch.py b/packages/typespec-python/tests/generated/unbranded/typetest-model-visibility/typetest/model/visibility/models/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/typetest-model-visibility/typetest/model/visibility/models/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/typetest-model-visibility/typetest/model/visibility/models/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/typetest-property-additionalproperties/typetest/property/additionalproperties/_patch.py b/packages/typespec-python/tests/generated/unbranded/typetest-property-additionalproperties/typetest/property/additionalproperties/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/typetest-property-additionalproperties/typetest/property/additionalproperties/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/typetest-property-additionalproperties/typetest/property/additionalproperties/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/typetest-property-additionalproperties/typetest/property/additionalproperties/aio/_patch.py b/packages/typespec-python/tests/generated/unbranded/typetest-property-additionalproperties/typetest/property/additionalproperties/aio/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/typetest-property-additionalproperties/typetest/property/additionalproperties/aio/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/typetest-property-additionalproperties/typetest/property/additionalproperties/aio/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/typetest-property-additionalproperties/typetest/property/additionalproperties/aio/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/typetest-property-additionalproperties/typetest/property/additionalproperties/aio/operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/typetest-property-additionalproperties/typetest/property/additionalproperties/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/typetest-property-additionalproperties/typetest/property/additionalproperties/aio/operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/typetest-property-additionalproperties/typetest/property/additionalproperties/models/_patch.py b/packages/typespec-python/tests/generated/unbranded/typetest-property-additionalproperties/typetest/property/additionalproperties/models/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/typetest-property-additionalproperties/typetest/property/additionalproperties/models/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/typetest-property-additionalproperties/typetest/property/additionalproperties/models/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/typetest-property-additionalproperties/typetest/property/additionalproperties/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/typetest-property-additionalproperties/typetest/property/additionalproperties/operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/typetest-property-additionalproperties/typetest/property/additionalproperties/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/typetest-property-additionalproperties/typetest/property/additionalproperties/operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/typetest-property-nullable/typetest/property/nullable/_patch.py b/packages/typespec-python/tests/generated/unbranded/typetest-property-nullable/typetest/property/nullable/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/typetest-property-nullable/typetest/property/nullable/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/typetest-property-nullable/typetest/property/nullable/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/typetest-property-nullable/typetest/property/nullable/aio/_patch.py b/packages/typespec-python/tests/generated/unbranded/typetest-property-nullable/typetest/property/nullable/aio/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/typetest-property-nullable/typetest/property/nullable/aio/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/typetest-property-nullable/typetest/property/nullable/aio/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/typetest-property-nullable/typetest/property/nullable/aio/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/typetest-property-nullable/typetest/property/nullable/aio/operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/typetest-property-nullable/typetest/property/nullable/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/typetest-property-nullable/typetest/property/nullable/aio/operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/typetest-property-nullable/typetest/property/nullable/models/_patch.py b/packages/typespec-python/tests/generated/unbranded/typetest-property-nullable/typetest/property/nullable/models/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/typetest-property-nullable/typetest/property/nullable/models/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/typetest-property-nullable/typetest/property/nullable/models/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/typetest-property-nullable/typetest/property/nullable/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/typetest-property-nullable/typetest/property/nullable/operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/typetest-property-nullable/typetest/property/nullable/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/typetest-property-nullable/typetest/property/nullable/operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/typetest-property-optional/typetest/property/optional/_patch.py b/packages/typespec-python/tests/generated/unbranded/typetest-property-optional/typetest/property/optional/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/typetest-property-optional/typetest/property/optional/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/typetest-property-optional/typetest/property/optional/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/typetest-property-optional/typetest/property/optional/aio/_patch.py b/packages/typespec-python/tests/generated/unbranded/typetest-property-optional/typetest/property/optional/aio/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/typetest-property-optional/typetest/property/optional/aio/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/typetest-property-optional/typetest/property/optional/aio/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/typetest-property-optional/typetest/property/optional/aio/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/typetest-property-optional/typetest/property/optional/aio/operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/typetest-property-optional/typetest/property/optional/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/typetest-property-optional/typetest/property/optional/aio/operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/typetest-property-optional/typetest/property/optional/models/_patch.py b/packages/typespec-python/tests/generated/unbranded/typetest-property-optional/typetest/property/optional/models/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/typetest-property-optional/typetest/property/optional/models/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/typetest-property-optional/typetest/property/optional/models/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/typetest-property-optional/typetest/property/optional/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/typetest-property-optional/typetest/property/optional/operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/typetest-property-optional/typetest/property/optional/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/typetest-property-optional/typetest/property/optional/operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/typetest-property-valuetypes/typetest/property/valuetypes/_patch.py b/packages/typespec-python/tests/generated/unbranded/typetest-property-valuetypes/typetest/property/valuetypes/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/typetest-property-valuetypes/typetest/property/valuetypes/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/typetest-property-valuetypes/typetest/property/valuetypes/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/typetest-property-valuetypes/typetest/property/valuetypes/aio/_patch.py b/packages/typespec-python/tests/generated/unbranded/typetest-property-valuetypes/typetest/property/valuetypes/aio/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/typetest-property-valuetypes/typetest/property/valuetypes/aio/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/typetest-property-valuetypes/typetest/property/valuetypes/aio/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/typetest-property-valuetypes/typetest/property/valuetypes/aio/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/typetest-property-valuetypes/typetest/property/valuetypes/aio/operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/typetest-property-valuetypes/typetest/property/valuetypes/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/typetest-property-valuetypes/typetest/property/valuetypes/aio/operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/typetest-property-valuetypes/typetest/property/valuetypes/models/_patch.py b/packages/typespec-python/tests/generated/unbranded/typetest-property-valuetypes/typetest/property/valuetypes/models/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/typetest-property-valuetypes/typetest/property/valuetypes/models/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/typetest-property-valuetypes/typetest/property/valuetypes/models/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/typetest-property-valuetypes/typetest/property/valuetypes/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/typetest-property-valuetypes/typetest/property/valuetypes/operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/typetest-property-valuetypes/typetest/property/valuetypes/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/typetest-property-valuetypes/typetest/property/valuetypes/operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/typetest-scalar/typetest/scalar/_patch.py b/packages/typespec-python/tests/generated/unbranded/typetest-scalar/typetest/scalar/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/typetest-scalar/typetest/scalar/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/typetest-scalar/typetest/scalar/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/typetest-scalar/typetest/scalar/aio/_patch.py b/packages/typespec-python/tests/generated/unbranded/typetest-scalar/typetest/scalar/aio/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/typetest-scalar/typetest/scalar/aio/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/typetest-scalar/typetest/scalar/aio/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/typetest-scalar/typetest/scalar/aio/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/typetest-scalar/typetest/scalar/aio/operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/typetest-scalar/typetest/scalar/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/typetest-scalar/typetest/scalar/aio/operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/typetest-scalar/typetest/scalar/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/typetest-scalar/typetest/scalar/operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/typetest-scalar/typetest/scalar/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/typetest-scalar/typetest/scalar/operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/typetest-union/typetest/union/_patch.py b/packages/typespec-python/tests/generated/unbranded/typetest-union/typetest/union/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/typetest-union/typetest/union/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/typetest-union/typetest/union/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/typetest-union/typetest/union/aio/_patch.py b/packages/typespec-python/tests/generated/unbranded/typetest-union/typetest/union/aio/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/typetest-union/typetest/union/aio/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/typetest-union/typetest/union/aio/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/typetest-union/typetest/union/aio/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/typetest-union/typetest/union/aio/operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/typetest-union/typetest/union/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/typetest-union/typetest/union/aio/operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/typetest-union/typetest/union/models/_patch.py b/packages/typespec-python/tests/generated/unbranded/typetest-union/typetest/union/models/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/typetest-union/typetest/union/models/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/typetest-union/typetest/union/models/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/typetest-union/typetest/union/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/typetest-union/typetest/union/operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/typetest-union/typetest/union/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/typetest-union/typetest/union/operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/versioning-added/versioning/added/_patch.py b/packages/typespec-python/tests/generated/unbranded/versioning-added/versioning/added/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/versioning-added/versioning/added/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/versioning-added/versioning/added/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/versioning-added/versioning/added/aio/_patch.py b/packages/typespec-python/tests/generated/unbranded/versioning-added/versioning/added/aio/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/versioning-added/versioning/added/aio/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/versioning-added/versioning/added/aio/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/versioning-added/versioning/added/aio/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/versioning-added/versioning/added/aio/operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/versioning-added/versioning/added/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/versioning-added/versioning/added/aio/operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/versioning-added/versioning/added/models/_patch.py b/packages/typespec-python/tests/generated/unbranded/versioning-added/versioning/added/models/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/versioning-added/versioning/added/models/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/versioning-added/versioning/added/models/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/versioning-added/versioning/added/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/versioning-added/versioning/added/operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/versioning-added/versioning/added/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/versioning-added/versioning/added/operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/versioning-madeoptional/versioning/madeoptional/_operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/versioning-madeoptional/versioning/madeoptional/_operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/versioning-madeoptional/versioning/madeoptional/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/versioning-madeoptional/versioning/madeoptional/_operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/versioning-madeoptional/versioning/madeoptional/_patch.py b/packages/typespec-python/tests/generated/unbranded/versioning-madeoptional/versioning/madeoptional/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/versioning-madeoptional/versioning/madeoptional/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/versioning-madeoptional/versioning/madeoptional/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/versioning-madeoptional/versioning/madeoptional/aio/_operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/versioning-madeoptional/versioning/madeoptional/aio/_operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/versioning-madeoptional/versioning/madeoptional/aio/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/versioning-madeoptional/versioning/madeoptional/aio/_operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/versioning-madeoptional/versioning/madeoptional/aio/_patch.py b/packages/typespec-python/tests/generated/unbranded/versioning-madeoptional/versioning/madeoptional/aio/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/versioning-madeoptional/versioning/madeoptional/aio/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/versioning-madeoptional/versioning/madeoptional/aio/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/versioning-madeoptional/versioning/madeoptional/models/_patch.py b/packages/typespec-python/tests/generated/unbranded/versioning-madeoptional/versioning/madeoptional/models/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/versioning-madeoptional/versioning/madeoptional/models/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/versioning-madeoptional/versioning/madeoptional/models/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/versioning-removed/versioning/removed/_operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/versioning-removed/versioning/removed/_operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/versioning-removed/versioning/removed/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/versioning-removed/versioning/removed/_operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/versioning-removed/versioning/removed/_patch.py b/packages/typespec-python/tests/generated/unbranded/versioning-removed/versioning/removed/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/versioning-removed/versioning/removed/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/versioning-removed/versioning/removed/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/versioning-removed/versioning/removed/aio/_operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/versioning-removed/versioning/removed/aio/_operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/versioning-removed/versioning/removed/aio/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/versioning-removed/versioning/removed/aio/_operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/versioning-removed/versioning/removed/aio/_patch.py b/packages/typespec-python/tests/generated/unbranded/versioning-removed/versioning/removed/aio/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/versioning-removed/versioning/removed/aio/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/versioning-removed/versioning/removed/aio/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/versioning-removed/versioning/removed/models/_patch.py b/packages/typespec-python/tests/generated/unbranded/versioning-removed/versioning/removed/models/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/versioning-removed/versioning/removed/models/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/versioning-removed/versioning/removed/models/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/versioning-renamedfrom/versioning/renamedfrom/_patch.py b/packages/typespec-python/tests/generated/unbranded/versioning-renamedfrom/versioning/renamedfrom/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/versioning-renamedfrom/versioning/renamedfrom/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/versioning-renamedfrom/versioning/renamedfrom/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/versioning-renamedfrom/versioning/renamedfrom/aio/_patch.py b/packages/typespec-python/tests/generated/unbranded/versioning-renamedfrom/versioning/renamedfrom/aio/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/versioning-renamedfrom/versioning/renamedfrom/aio/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/versioning-renamedfrom/versioning/renamedfrom/aio/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/versioning-renamedfrom/versioning/renamedfrom/aio/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/versioning-renamedfrom/versioning/renamedfrom/aio/operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/versioning-renamedfrom/versioning/renamedfrom/aio/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/versioning-renamedfrom/versioning/renamedfrom/aio/operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/versioning-renamedfrom/versioning/renamedfrom/models/_patch.py b/packages/typespec-python/tests/generated/unbranded/versioning-renamedfrom/versioning/renamedfrom/models/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/versioning-renamedfrom/versioning/renamedfrom/models/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/versioning-renamedfrom/versioning/renamedfrom/models/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/versioning-renamedfrom/versioning/renamedfrom/operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/versioning-renamedfrom/versioning/renamedfrom/operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/versioning-renamedfrom/versioning/renamedfrom/operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/versioning-renamedfrom/versioning/renamedfrom/operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/versioning-returntypechangedfrom/versioning/returntypechangedfrom/_operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/versioning-returntypechangedfrom/versioning/returntypechangedfrom/_operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/versioning-returntypechangedfrom/versioning/returntypechangedfrom/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/versioning-returntypechangedfrom/versioning/returntypechangedfrom/_operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/versioning-returntypechangedfrom/versioning/returntypechangedfrom/_patch.py b/packages/typespec-python/tests/generated/unbranded/versioning-returntypechangedfrom/versioning/returntypechangedfrom/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/versioning-returntypechangedfrom/versioning/returntypechangedfrom/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/versioning-returntypechangedfrom/versioning/returntypechangedfrom/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/versioning-returntypechangedfrom/versioning/returntypechangedfrom/aio/_operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/versioning-returntypechangedfrom/versioning/returntypechangedfrom/aio/_operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/versioning-returntypechangedfrom/versioning/returntypechangedfrom/aio/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/versioning-returntypechangedfrom/versioning/returntypechangedfrom/aio/_operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/versioning-returntypechangedfrom/versioning/returntypechangedfrom/aio/_patch.py b/packages/typespec-python/tests/generated/unbranded/versioning-returntypechangedfrom/versioning/returntypechangedfrom/aio/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/versioning-returntypechangedfrom/versioning/returntypechangedfrom/aio/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/versioning-returntypechangedfrom/versioning/returntypechangedfrom/aio/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/versioning-returntypechangedfrom/versioning/returntypechangedfrom/models/_patch.py b/packages/typespec-python/tests/generated/unbranded/versioning-returntypechangedfrom/versioning/returntypechangedfrom/models/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/versioning-returntypechangedfrom/versioning/returntypechangedfrom/models/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/versioning-returntypechangedfrom/versioning/returntypechangedfrom/models/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/versioning-typechangedfrom/versioning/typechangedfrom/_operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/versioning-typechangedfrom/versioning/typechangedfrom/_operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/versioning-typechangedfrom/versioning/typechangedfrom/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/versioning-typechangedfrom/versioning/typechangedfrom/_operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/versioning-typechangedfrom/versioning/typechangedfrom/_patch.py b/packages/typespec-python/tests/generated/unbranded/versioning-typechangedfrom/versioning/typechangedfrom/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/versioning-typechangedfrom/versioning/typechangedfrom/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/versioning-typechangedfrom/versioning/typechangedfrom/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/versioning-typechangedfrom/versioning/typechangedfrom/aio/_operations/_patch.py b/packages/typespec-python/tests/generated/unbranded/versioning-typechangedfrom/versioning/typechangedfrom/aio/_operations/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/versioning-typechangedfrom/versioning/typechangedfrom/aio/_operations/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/versioning-typechangedfrom/versioning/typechangedfrom/aio/_operations/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/versioning-typechangedfrom/versioning/typechangedfrom/aio/_patch.py b/packages/typespec-python/tests/generated/unbranded/versioning-typechangedfrom/versioning/typechangedfrom/aio/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/versioning-typechangedfrom/versioning/typechangedfrom/aio/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/versioning-typechangedfrom/versioning/typechangedfrom/aio/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/generated/unbranded/versioning-typechangedfrom/versioning/typechangedfrom/models/_patch.py b/packages/typespec-python/tests/generated/unbranded/versioning-typechangedfrom/versioning/typechangedfrom/models/_patch.py index 894b28a174c..e9ae9283519 100644 --- a/packages/typespec-python/tests/generated/unbranded/versioning-typechangedfrom/versioning/typechangedfrom/models/_patch.py +++ b/packages/typespec-python/tests/generated/unbranded/versioning-typechangedfrom/versioning/typechangedfrom/models/_patch.py @@ -4,6 +4,7 @@ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize """ + from typing import List __all__: List[str] = [] # Add all objects you want publicly available to users at this package level diff --git a/packages/typespec-python/tests/mock_api/unbranded/conftest.py b/packages/typespec-python/tests/mock_api/unbranded/conftest.py index a94535b6905..1d69d8bd1ef 100644 --- a/packages/typespec-python/tests/mock_api/unbranded/conftest.py +++ b/packages/typespec-python/tests/mock_api/unbranded/conftest.py @@ -10,7 +10,6 @@ import pytest from typing import List - SPECIAL_WORDS = [ "and", "as", diff --git a/packages/typespec-python/tests/requirements/lint.txt b/packages/typespec-python/tests/requirements/lint.txt index 2a9896f8d75..736a7806543 100644 --- a/packages/typespec-python/tests/requirements/lint.txt +++ b/packages/typespec-python/tests/requirements/lint.txt @@ -1,4 +1,4 @@ # Linting dependencies -r base.txt pylint==4.0.4 -black==24.8.0 +black==26.3.1 diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index c872e2fd29d..08fe97a593d 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -60,8 +60,8 @@ importers: specifier: ~1.0.2 version: 1.0.2 '@typespec/http-client-python': - specifier: https://artprodcus3.artifacts.visualstudio.com/A0fb41ef4-5012-48a9-bf39-4ee3de03ee35/29ec6040-b234-4e31-b139-33dc4287b756/_apis/artifact/cGlwZWxpbmVhcnRpZmFjdDovL2F6dXJlLXNkay9wcm9qZWN0SWQvMjllYzYwNDAtYjIzNC00ZTMxLWIxMzktMzNkYzQyODdiNzU2L2J1aWxkSWQvNjE1ODIzMi9hcnRpZmFjdE5hbWUvYnVpbGRfYXJ0aWZhY3RzX3B5dGhvbg2/content?format=file&subPath=%2Fpackages%2Ftypespec-http-client-python-0.28.3.tgz - version: https://artprodcus3.artifacts.visualstudio.com/A0fb41ef4-5012-48a9-bf39-4ee3de03ee35/29ec6040-b234-4e31-b139-33dc4287b756/_apis/artifact/cGlwZWxpbmVhcnRpZmFjdDovL2F6dXJlLXNkay9wcm9qZWN0SWQvMjllYzYwNDAtYjIzNC00ZTMxLWIxMzktMzNkYzQyODdiNzU2L2J1aWxkSWQvNjE1ODIzMi9hcnRpZmFjdE5hbWUvYnVpbGRfYXJ0aWZhY3RzX3B5dGhvbg2/content?format=file&subPath=%2Fpackages%2Ftypespec-http-client-python-0.28.3.tgz(y2blksstlsblh3iqmgy3brbone) + specifier: https://artprodcus3.artifacts.visualstudio.com/A0fb41ef4-5012-48a9-bf39-4ee3de03ee35/29ec6040-b234-4e31-b139-33dc4287b756/_apis/artifact/cGlwZWxpbmVhcnRpZmFjdDovL2F6dXJlLXNkay9wcm9qZWN0SWQvMjllYzYwNDAtYjIzNC00ZTMxLWIxMzktMzNkYzQyODdiNzU2L2J1aWxkSWQvNjE1OTE5Ny9hcnRpZmFjdE5hbWUvYnVpbGRfYXJ0aWZhY3RzX3B5dGhvbg2/content?format=file&subPath=%2Fpackages%2Ftypespec-http-client-python-0.28.3.tgz + version: https://artprodcus3.artifacts.visualstudio.com/A0fb41ef4-5012-48a9-bf39-4ee3de03ee35/29ec6040-b234-4e31-b139-33dc4287b756/_apis/artifact/cGlwZWxpbmVhcnRpZmFjdDovL2F6dXJlLXNkay9wcm9qZWN0SWQvMjllYzYwNDAtYjIzNC00ZTMxLWIxMzktMzNkYzQyODdiNzU2L2J1aWxkSWQvNjE1OTE5Ny9hcnRpZmFjdE5hbWUvYnVpbGRfYXJ0aWZhY3RzX3B5dGhvbg2/content?format=file&subPath=%2Fpackages%2Ftypespec-http-client-python-0.28.3.tgz(y2blksstlsblh3iqmgy3brbone) fs-extra: specifier: ~11.2.0 version: 11.2.0 @@ -82,8 +82,8 @@ importers: packages/typespec-python: dependencies: '@typespec/http-client-python': - specifier: https://artprodcus3.artifacts.visualstudio.com/A0fb41ef4-5012-48a9-bf39-4ee3de03ee35/29ec6040-b234-4e31-b139-33dc4287b756/_apis/artifact/cGlwZWxpbmVhcnRpZmFjdDovL2F6dXJlLXNkay9wcm9qZWN0SWQvMjllYzYwNDAtYjIzNC00ZTMxLWIxMzktMzNkYzQyODdiNzU2L2J1aWxkSWQvNjE1ODIzMi9hcnRpZmFjdE5hbWUvYnVpbGRfYXJ0aWZhY3RzX3B5dGhvbg2/content?format=file&subPath=%2Fpackages%2Ftypespec-http-client-python-0.28.3.tgz - version: https://artprodcus3.artifacts.visualstudio.com/A0fb41ef4-5012-48a9-bf39-4ee3de03ee35/29ec6040-b234-4e31-b139-33dc4287b756/_apis/artifact/cGlwZWxpbmVhcnRpZmFjdDovL2F6dXJlLXNkay9wcm9qZWN0SWQvMjllYzYwNDAtYjIzNC00ZTMxLWIxMzktMzNkYzQyODdiNzU2L2J1aWxkSWQvNjE1ODIzMi9hcnRpZmFjdE5hbWUvYnVpbGRfYXJ0aWZhY3RzX3B5dGhvbg2/content?format=file&subPath=%2Fpackages%2Ftypespec-http-client-python-0.28.3.tgz(y2blksstlsblh3iqmgy3brbone) + specifier: https://artprodcus3.artifacts.visualstudio.com/A0fb41ef4-5012-48a9-bf39-4ee3de03ee35/29ec6040-b234-4e31-b139-33dc4287b756/_apis/artifact/cGlwZWxpbmVhcnRpZmFjdDovL2F6dXJlLXNkay9wcm9qZWN0SWQvMjllYzYwNDAtYjIzNC00ZTMxLWIxMzktMzNkYzQyODdiNzU2L2J1aWxkSWQvNjE1OTE5Ny9hcnRpZmFjdE5hbWUvYnVpbGRfYXJ0aWZhY3RzX3B5dGhvbg2/content?format=file&subPath=%2Fpackages%2Ftypespec-http-client-python-0.28.3.tgz + version: https://artprodcus3.artifacts.visualstudio.com/A0fb41ef4-5012-48a9-bf39-4ee3de03ee35/29ec6040-b234-4e31-b139-33dc4287b756/_apis/artifact/cGlwZWxpbmVhcnRpZmFjdDovL2F6dXJlLXNkay9wcm9qZWN0SWQvMjllYzYwNDAtYjIzNC00ZTMxLWIxMzktMzNkYzQyODdiNzU2L2J1aWxkSWQvNjE1OTE5Ny9hcnRpZmFjdE5hbWUvYnVpbGRfYXJ0aWZhY3RzX3B5dGhvbg2/content?format=file&subPath=%2Fpackages%2Ftypespec-http-client-python-0.28.3.tgz(y2blksstlsblh3iqmgy3brbone) fs-extra: specifier: ~11.2.0 version: 11.2.0 @@ -1723,8 +1723,8 @@ packages: peerDependencies: '@typespec/compiler': ^1.11.0 - '@typespec/http-client-python@https://artprodcus3.artifacts.visualstudio.com/A0fb41ef4-5012-48a9-bf39-4ee3de03ee35/29ec6040-b234-4e31-b139-33dc4287b756/_apis/artifact/cGlwZWxpbmVhcnRpZmFjdDovL2F6dXJlLXNkay9wcm9qZWN0SWQvMjllYzYwNDAtYjIzNC00ZTMxLWIxMzktMzNkYzQyODdiNzU2L2J1aWxkSWQvNjE1ODIzMi9hcnRpZmFjdE5hbWUvYnVpbGRfYXJ0aWZhY3RzX3B5dGhvbg2/content?format=file&subPath=%2Fpackages%2Ftypespec-http-client-python-0.28.3.tgz': - resolution: {tarball: https://artprodcus3.artifacts.visualstudio.com/A0fb41ef4-5012-48a9-bf39-4ee3de03ee35/29ec6040-b234-4e31-b139-33dc4287b756/_apis/artifact/cGlwZWxpbmVhcnRpZmFjdDovL2F6dXJlLXNkay9wcm9qZWN0SWQvMjllYzYwNDAtYjIzNC00ZTMxLWIxMzktMzNkYzQyODdiNzU2L2J1aWxkSWQvNjE1ODIzMi9hcnRpZmFjdE5hbWUvYnVpbGRfYXJ0aWZhY3RzX3B5dGhvbg2/content?format=file&subPath=%2Fpackages%2Ftypespec-http-client-python-0.28.3.tgz} + '@typespec/http-client-python@https://artprodcus3.artifacts.visualstudio.com/A0fb41ef4-5012-48a9-bf39-4ee3de03ee35/29ec6040-b234-4e31-b139-33dc4287b756/_apis/artifact/cGlwZWxpbmVhcnRpZmFjdDovL2F6dXJlLXNkay9wcm9qZWN0SWQvMjllYzYwNDAtYjIzNC00ZTMxLWIxMzktMzNkYzQyODdiNzU2L2J1aWxkSWQvNjE1OTE5Ny9hcnRpZmFjdE5hbWUvYnVpbGRfYXJ0aWZhY3RzX3B5dGhvbg2/content?format=file&subPath=%2Fpackages%2Ftypespec-http-client-python-0.28.3.tgz': + resolution: {tarball: https://artprodcus3.artifacts.visualstudio.com/A0fb41ef4-5012-48a9-bf39-4ee3de03ee35/29ec6040-b234-4e31-b139-33dc4287b756/_apis/artifact/cGlwZWxpbmVhcnRpZmFjdDovL2F6dXJlLXNkay9wcm9qZWN0SWQvMjllYzYwNDAtYjIzNC00ZTMxLWIxMzktMzNkYzQyODdiNzU2L2J1aWxkSWQvNjE1OTE5Ny9hcnRpZmFjdE5hbWUvYnVpbGRfYXJ0aWZhY3RzX3B5dGhvbg2/content?format=file&subPath=%2Fpackages%2Ftypespec-http-client-python-0.28.3.tgz} version: 0.28.3 engines: {node: '>=20.0.0'} peerDependencies: @@ -6708,7 +6708,7 @@ snapshots: dependencies: '@typespec/compiler': 1.11.0(@types/node@25.0.10) - '@typespec/http-client-python@https://artprodcus3.artifacts.visualstudio.com/A0fb41ef4-5012-48a9-bf39-4ee3de03ee35/29ec6040-b234-4e31-b139-33dc4287b756/_apis/artifact/cGlwZWxpbmVhcnRpZmFjdDovL2F6dXJlLXNkay9wcm9qZWN0SWQvMjllYzYwNDAtYjIzNC00ZTMxLWIxMzktMzNkYzQyODdiNzU2L2J1aWxkSWQvNjE1ODIzMi9hcnRpZmFjdE5hbWUvYnVpbGRfYXJ0aWZhY3RzX3B5dGhvbg2/content?format=file&subPath=%2Fpackages%2Ftypespec-http-client-python-0.28.3.tgz(y2blksstlsblh3iqmgy3brbone)': + '@typespec/http-client-python@https://artprodcus3.artifacts.visualstudio.com/A0fb41ef4-5012-48a9-bf39-4ee3de03ee35/29ec6040-b234-4e31-b139-33dc4287b756/_apis/artifact/cGlwZWxpbmVhcnRpZmFjdDovL2F6dXJlLXNkay9wcm9qZWN0SWQvMjllYzYwNDAtYjIzNC00ZTMxLWIxMzktMzNkYzQyODdiNzU2L2J1aWxkSWQvNjE1OTE5Ny9hcnRpZmFjdE5hbWUvYnVpbGRfYXJ0aWZhY3RzX3B5dGhvbg2/content?format=file&subPath=%2Fpackages%2Ftypespec-http-client-python-0.28.3.tgz(y2blksstlsblh3iqmgy3brbone)': dependencies: '@azure-tools/typespec-autorest': 0.67.0(7o3sem7p6i3t4jykacdovvl7ii) '@azure-tools/typespec-azure-core': 0.67.0(@typespec/compiler@1.11.0(@types/node@25.0.10))(@typespec/http@1.11.0(@typespec/compiler@1.11.0(@types/node@25.0.10))(@typespec/streams@0.81.0(@typespec/compiler@1.11.0(@types/node@25.0.10))))(@typespec/rest@0.81.0(@typespec/compiler@1.11.0(@types/node@25.0.10))(@typespec/http@1.11.0(@typespec/compiler@1.11.0(@types/node@25.0.10))(@typespec/streams@0.81.0(@typespec/compiler@1.11.0(@types/node@25.0.10)))))