You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I had the degree sign (U+00B0) in a comment in my python code, and it caused store_code_state to fail. I think the fix here is as simple as changing open(diff_file_name, "x") to open(diff_file_name, "x", encoding="utf-8"). If I tested this and made a pull request, could someone review and merge?
The text was updated successfully, but these errors were encountered:
I had the degree sign (U+00B0) in a comment in my python code, and it caused
store_code_state
to fail. I think the fix here is as simple as changingopen(diff_file_name, "x")
toopen(diff_file_name, "x", encoding="utf-8")
. If I tested this and made a pull request, could someone review and merge?The text was updated successfully, but these errors were encountered: