Skip to content

Commit f9a2126

Browse files
authored
Merge pull request #48847 from gabland-msft/master
Missing named arguments
2 parents b6bdf85 + 56652ad commit f9a2126

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)