We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 09b86c2 commit 0786ab8Copy full SHA for 0786ab8
sdk/ml/azure-ai-ml/azure/ai/ml/entities/_data_import/data_import.py
@@ -105,6 +105,7 @@ def _to_rest_object(self) -> RestDataImport:
105
106
@classmethod
107
def _from_rest_object(cls, data_rest_object: RestDataImport) -> "DataImport":
108
+ source: Any = None
109
if isinstance(data_rest_object.source, RestDatabaseSource):
110
source = Database(
111
connection=data_rest_object.source.connection,
sdk/ml/azure-ai-ml/pyproject.toml
@@ -32,7 +32,6 @@ exclude = [
32
"azure/ai/ml/_file_utils/",
33
"azure/ai/ml/_logging/",
34
"azure/ai/ml/_utils",
35
- "azure/ai/ml/data_transfer/",
36
"azure/ai/ml/exceptions.py",
37
"azure/ai/ml/_exception_helper.py",
38
]
0 commit comments