hhatto / nude.py

Nudity detection with Python
MIT License
921 stars 131 forks source link

Move reverse sorting to sorted function #6

Closed dlebech closed 9 years ago

dlebech commented 9 years ago

Remove list.reverse operation and used sorted(reverse=True) instead.

This is a microoptimization :-)

hhatto commented 9 years ago

Thanks