We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
pprint
pp
1 parent 16dd6d2 commit 744fa82Copy full SHA for 744fa82
django_unicorn/utils.py
@@ -3,7 +3,7 @@
3
import logging
4
import pickle
5
from inspect import signature
6
-from pprint import pp
+from pprint import pprint
7
from typing import Dict, List, Union
8
from typing import get_type_hints as typing_get_type_hints
9
@@ -64,10 +64,10 @@ def dicts_equal(dictionary_one: Dict, dictionary_two: Dict) -> bool:
64
65
if not is_valid:
66
print("dictionary_one:")
67
- pp(dictionary_one)
+ pprint(dictionary_one)
68
print()
69
print("dictionary_two:")
70
- pp(dictionary_two)
+ pprint(dictionary_two)
71
72
return is_valid
73
0 commit comments