google / amber

Amber is a multi-API shader test framework
Apache License 2.0
193 stars 65 forks source link

cpplint CI test is failing because isinstance(line,unicode) crashes Python #1007

Closed dneto0 closed 1 year ago

dneto0 commented 1 year ago

In third_party/cpplint/cpplint/cpplint.py there's a line in GetLineWidth(line) that does:

 if isinstance(line, unicode):

This silent crashed Python, making the process exit with status 1. This cause our CI-check-format to fail.