So recently set up prettier.js and rolled it into my eslint world. Its output breaks the full report function with ye olde python encode error.
A quick and dirty fix is to simply encode the html sent to print -- it makes for an ugly output, but at least it works.
There are prob 100 diff real fixes, but I got tickets to do....

add this to line 113 in main.py:
print(html.encode('utf-8'))

So recently set up
prettier.jsand rolled it into my eslint world. Its output breaks the full report function with ye olde python encode error.A quick and dirty fix is to simply encode the html sent to
print-- it makes for an ugly output, but at least it works.There are prob 100 diff real fixes, but I got tickets to do....
add this to line 113 in
main.py: