vallettea / koala

Transpose your Excel calculations into python for better performances and scaling.
GNU General Public License v3.0
144 stars 59 forks source link

Fix match when it is type is 1 #174

Closed danielsjf closed 5 years ago

danielsjf commented 5 years ago

The match function could give an index out of bound error. Range from 0 to len - 1 instead of 0 to len.

danielsjf commented 5 years ago

The initial fix was wrong. The issue came from an 'is not' evaluation. For the tests this returned the correct results, but for actual excel files it did not.