N00bie-to-Github

Results 1 comments of N00bie-to-Github

I'm not sure how accurate this is but I swapped out ```python for i in range(len(row)): if len(row[i]) > total_cells: total_cells = len(row[i]) ``` with ```python total_cells = len(max(rows, key=len))...