pnijhara / sih-2019

Missing whitespace around operator FLK-E225
Style
Minor
3 occurrences in this check
missing whitespace around operator
 60                    ], className="container")
 61    )
 62
 63layout=app_layout() 64
 65def filter(year, category, rows, labels, remove=False):
 66    cu_index, co_index = [index for index in years.transpose().index if years[index].iloc[0] == year]
missing whitespace around operator
57    rows = data.iloc[index][2:-2].values
58    year_list = ['Y ' + year for year in year_set]
59
60    arrays=[]61    for i in range(len(header_set)):
62        arrays.append([])
63
missing whitespace around operator
 71    index = int(value)
 72    
 73    year_list = ['Y ' + year for year in year_set]
 74    arrays=[] 75    for i in range(len(header_set)):
 76        arrays.append([])
 77    rows = data.iloc[index][2:-2]