The jupyter renderer throws an error while trying to load the notebook #6138
Unanswered
Thabet-Chaaouri
asked this question in
Support
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
OS System : Windows 10
GE version : 0.15.26
I am trying to edit and adapt an expectation suite generated by a profiler, but when I run the command "great_expectations suite edit" and choose the option "interactively", the notebook does not open and throws an unreadable notebook error : UnicodeDecodeError('utf-8',).
I think the reason is that I am working on french data strings and when the profiler validator writes some expectations to Json using the dump method, it is using the defaut argument "ensure_ascii=True" so it writes some special french characters in its hexadecimal format (like \u00e9 in place of é) with some expectations like "expect_column_values_to_be_in_set".
So when trying to read and edit those expectations maybe the jinja library can't handle those characters and throws an error.
To reproduce the issue, try working GE on csv data with special charcters.
does anyone know how to solve this problem.
Beta Was this translation helpful? Give feedback.
All reactions