innix / github-avatar-generator

A GitHub-esque avatar image generator written in Python.
MIT License
24 stars 3 forks source link

Fix float type of matrix size in Python 3 #1

Closed nomad-vagabond closed 4 years ago

nomad-vagabond commented 4 years ago

In Python 3 division operator "/" produces "float" type output. Use either conversion to 'int' type or '//' operator to get correct matrix size

innix commented 4 years ago

Thanks for contributing.