JazzCore / python-pdfkit

Wkhtmltopdf python wrapper to convert html to pdf
MIT License
1.99k stars 329 forks source link

BUG: Check for equality, not for identity #224

Closed martin-thoma closed 1 year ago

martin-thoma commented 2 years ago
>>> a = "file"
>>> b = "fi"
>>> c = "le"
>>> a == b+c
True
>>> a is b+c
False