From cc1953ee44934c7a6249b55f28bc543c968a3b92 Mon Sep 17 00:00:00 2001 From: Veronica Manuel Date: Wed, 17 May 2023 14:51:18 +0000 Subject: [PATCH] GITBOOK-142: change request with no subject merged in GitBook --- how-tos/compute-to-data/make-a-boss-c2d-algorithm.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/how-tos/compute-to-data/make-a-boss-c2d-algorithm.md b/how-tos/compute-to-data/make-a-boss-c2d-algorithm.md index 9505947a..65a058be 100644 --- a/how-tos/compute-to-data/make-a-boss-c2d-algorithm.md +++ b/how-tos/compute-to-data/make-a-boss-c2d-algorithm.md @@ -39,7 +39,7 @@ if not input_filename: # No input filename returned exit() -# Call the Function +# Open the file & run your code with open(input_filename, 'r') as file: # Read the CSV file csv_reader = csv.DictReader(file) @@ -70,6 +70,7 @@ async function processfolder(Path) { +// Open the file & run your code processfolder(input_folder); ```