Skip to content

Commit 56652ad

Browse files
authored
Merge pull request #1 from gabland-msft/gabland-msft-patch-1
Missing named arguments
2 parents 6f5d49b + 24a1f3f commit 56652ad

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

articles/data-factory/quickstart-create-data-factory-python.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -374,9 +374,9 @@ def main():
374374
act_name = 'copyBlobtoBlob'
375375
blob_source = BlobSource()
376376
blob_sink = BlobSink()
377-
dsin_ref = DatasetReference(ds_name)
378-
dsOut_ref = DatasetReference(dsOut_name)
379-
copy_activity = CopyActivity(act_name, inputs=[dsin_ref], outputs=[
377+
dsin_ref = DatasetReference(reference_name=ds_name)
378+
dsOut_ref = DatasetReference(reference_name=dsOut_name)
379+
copy_activity = CopyActivity(name=act_name, inputs=[dsin_ref], outputs=[
380380
dsOut_ref], source=blob_source, sink=blob_sink)
381381

382382
# Create a pipeline with the copy activity

0 commit comments

Comments
 (0)