Skip to content

Commit 687fb6f

Browse files
author
Yalin Li
authored
[DI] Enable to run pylint in DI pipeline (#35077)
1 parent 95c5f2a commit 687fb6f

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

sdk/documentintelligence/azure-ai-documentintelligence/azure/ai/documentintelligence/models/_patch.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ class AnalyzeDocumentRequest(GeneratedAnalyzeDocumentRequest):
2222
:ivar bytes_source: Document bytes to analyze. Either url_source or bytes_source must be specified.
2323
:vartype bytes_source: bytes
2424
"""
25-
25+
2626
bytes_source: Optional[bytes] = rest_field(name="base64Source", format="base64")
2727
"""Document bytes to analyze. Either url_source or bytes_source must be specified."""
2828

@@ -40,7 +40,9 @@ class ClassifyDocumentRequest(GeneratedClassifyDocumentRequest):
4040
bytes_source: Optional[bytes] = rest_field(name="base64Source", format="base64")
4141
"""Document bytes to classify. Either url_source or bytes_source must be specified."""
4242

43-
__all__: List[str] = ["AnalyzeDocumentRequest", "ClassifyDocumentRequest"] # Add all objects you want publicly available to users at this package level
43+
__all__: List[str] = [
44+
"AnalyzeDocumentRequest", "ClassifyDocumentRequest"
45+
] # Add all objects you want publicly available to users at this package level
4446

4547

4648
def patch_sdk():
Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
11
[tool.azure-sdk-build]
22
pyright = false
3-
pylint = false

0 commit comments

Comments
 (0)