txoof / epdlib

Python library for creating and writing modular layouts for e-paper screens
GNU General Public License v3.0
16 stars 8 forks source link

'true' should be True in Screen.py #49

Closed matthewvinton closed 6 months ago

matthewvinton commented 1 year ago

Hey,

I have an IT8951 screen and ran into a couple of challenges when setting up PaperPi. Firstly, line 431 in Screen.py reads:

resolution.sort(reverse=true)

It should read:

resolution.sort(reverse=True)

txoof commented 1 year ago

Thanks for catching that. I'll push an update shortly.