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); ```