Open YiTanJang opened 6 years ago
on line 84 of prorportional.py
weights /= max(weights) # Normalize for stability
should be fixed since weights is a list
weights = [ i/max(weights) for i in weights]
on line 84 of prorportional.py
should be fixed since weights is a list