pnijhara / sih-2019

Missing whitespace around modulo operator FLK-E228
Style
Minor
2 occurrences in this check
missing whitespace around modulo operator
64    length = len(header_set)
65
66    for (idx, column) in enumerate(rows):
67        arrays[idx%length].append(column)68    
69    graphs = [go.Bar(
70        x=year_list,
missing whitespace around modulo operator
 78    length = len(header_set)
 79
 80    for (idx, column) in enumerate(rows):
 81        arrays[idx%length].append(column) 82
 83    graphs = [{
 84        'x': year_list,