We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
main.py
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.
prettier.js
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.
print
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'))
The text was updated successfully, but these errors were encountered:
No branches or pull requests
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
:The text was updated successfully, but these errors were encountered: