Skip to content

Commit 885351a

Browse files
author
SDKAuto
committed
CodeGen from PR 3557 in test-repo-billy/azure-rest-api-specs
Merge a89ef2b585a9b3295c736d58d3ef992efe554eab into 2e448dc49e1db016778f5f077eaa30cc2ce7e85b
1 parent b2b0c35 commit 885351a

28 files changed

+1471
-1745
lines changed
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"commit": "e6ae33c2dc2c450ddd1147342b048a4ccd49323e",
3+
"repository_url": "https://github.com/test-repo-billy/azure-rest-api-specs",
4+
"typespec_src": "specification/ai/DocumentIntelligence",
5+
"@azure-tools/typespec-python": "0.31.1"
6+
}

sdk/documentintelligence/azure-ai-documentintelligence/azure/ai/documentintelligence/__init__.py

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,21 +6,23 @@
66
# Changes may cause incorrect behavior and will be lost if the code is regenerated.
77
# --------------------------------------------------------------------------
88

9-
from ._patch import DocumentIntelligenceClient
10-
from ._patch import DocumentIntelligenceAdministrationClient
9+
from ._client import DocumentIntelligenceClient
10+
from ._client import DocumentIntelligenceAdministrationClient
1111
from ._version import VERSION
1212

1313
__version__ = VERSION
1414

15-
16-
from ._patch import AnalyzeDocumentLROPoller
15+
try:
16+
from ._patch import __all__ as _patch_all
17+
from ._patch import * # pylint: disable=unused-wildcard-import
18+
except ImportError:
19+
_patch_all = []
1720
from ._patch import patch_sdk as _patch_sdk
1821

1922
__all__ = [
20-
"AnalyzeDocumentLROPoller",
2123
"DocumentIntelligenceClient",
2224
"DocumentIntelligenceAdministrationClient",
2325
]
24-
26+
__all__.extend([p for p in _patch_all if p not in __all__])
2527

2628
_patch_sdk()

0 commit comments

Comments
 (0)