Closed
Description
Hi! I wanted to report a bug I found in CSV_files/read_csv.py. I was expecting the program to successfully read a CSV file using the different methods provided (DictReader
and Pandas
), but the actual result of running the program results in a TypeError
. It seems that the read_using_DictReader
function should take in one positional argument: path
. However, the function is being called later without any arguments here, causing the program to give a TypeError
. This error can be reproduced by running the program.