Skip to content

Commit c07927b

Browse files
author
SDKAuto
committed
CodeGen from PR 33344 in Azure/azure-rest-api-specs
Merge bfafe9e2f8a8a553ae4a2758d2e2870200ed7024 into 10907bf313018df38cd1648f862455433567f277
1 parent cf20966 commit c07927b

File tree

84 files changed

+11395
-12021
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

84 files changed

+11395
-12021
lines changed
Lines changed: 413 additions & 53 deletions
Large diffs are not rendered by default.
Lines changed: 14 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,19 +5,24 @@
55
# Code generated by Microsoft (R) Python Code Generator.
66
# Changes may cause incorrect behavior and will be lost if the code is regenerated.
77
# --------------------------------------------------------------------------
8+
# pylint: disable=wrong-import-position
89

9-
from ._client import DevCenterClient
10+
from typing import TYPE_CHECKING
1011

11-
try:
12-
from ._patch import __all__ as _patch_all
12+
if TYPE_CHECKING:
1313
from ._patch import * # pylint: disable=unused-wildcard-import
14-
except ImportError:
15-
_patch_all = []
16-
from ._patch import patch_sdk as _patch_sdk
1714

15+
from ._operations import DevCenterClientOperationsMixin # type: ignore
16+
from ._operations import DevBoxesClientOperationsMixin # type: ignore
17+
from ._operations import DeploymentEnvironmentsClientOperationsMixin # type: ignore
18+
19+
from ._patch import __all__ as _patch_all
20+
from ._patch import *
21+
from ._patch import patch_sdk as _patch_sdk
1822
__all__ = [
19-
"DevCenterClient",
23+
'DevCenterClientOperationsMixin',
24+
'DevBoxesClientOperationsMixin',
25+
'DeploymentEnvironmentsClientOperationsMixin',
2026
]
21-
__all__.extend([p for p in _patch_all if p not in __all__])
22-
27+
__all__.extend([p for p in _patch_all if p not in __all__]) # pyright: ignore
2328
_patch_sdk()

0 commit comments

Comments
 (0)