LordDarkula / chess_py

Chess library for simple chess engine creation
http://lorddarkula.github.io/chess_py/
MIT License
12 stars 5 forks source link

Replace old for loops with cleaner versions #13

Closed LordDarkula closed 8 years ago

LordDarkula commented 8 years ago

Replace for i in range(len(x)) with for i, j in enumerate(x)