Skip to content

Commit 744fa82

Browse files
committed
Use pprint instead of pp.
1 parent 16dd6d2 commit 744fa82

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

django_unicorn/utils.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import logging
44
import pickle
55
from inspect import signature
6-
from pprint import pp
6+
from pprint import pprint
77
from typing import Dict, List, Union
88
from typing import get_type_hints as typing_get_type_hints
99

@@ -64,10 +64,10 @@ def dicts_equal(dictionary_one: Dict, dictionary_two: Dict) -> bool:
6464

6565
if not is_valid:
6666
print("dictionary_one:")
67-
pp(dictionary_one)
67+
pprint(dictionary_one)
6868
print()
6969
print("dictionary_two:")
70-
pp(dictionary_two)
70+
pprint(dictionary_two)
7171

7272
return is_valid
7373

0 commit comments

Comments
 (0)