Open worrallj opened 4 years ago
Kept getting this error in the tutorial.
Recommend changing result = browser.aggregate(cell, drilldown=["year"]) To: result=browser.aggregate(drilldown=["year"]).table_rows("year")
result = browser.aggregate(cell, drilldown=["year"])
result=browser.aggregate(drilldown=["year"]).table_rows("year")
That seems to fix the problem.
Kept getting this error in the tutorial.
Recommend changing
result = browser.aggregate(cell, drilldown=["year"])
To:result=browser.aggregate(drilldown=["year"]).table_rows("year")
That seems to fix the problem.