Executing ```python ScrapeWHO(['2018'])``` will result in ```pythonyear_to_scrape = (2018,) ``` which is not desired. It should be ```pythonyear_to_scrape = ['2018']```.
Executing
python ScrapeWHO(['2018'])will result inpythonyear_to_scrape = (2018,)which is not desired. It should bepythonyear_to_scrape = ['2018'].