Lucas Vasconcelos

Results 1 comments of Lucas Vasconcelos

I was able to get this doing that: ```python def pretty_print_diff(diff): type_t1 = get_type(diff.t1).__name__ type_t2 = get_type(diff.t2).__name__ val_t1 = '"{}"'.format(str(diff.t1)) if type_t1 == "str" else str(diff.t1) val_t2 = '"{}"'.format(str(diff.t2)) if...