Commit a9dcc871 authored by Jérome Perrin's avatar Jérome Perrin

patches/diff: emit DeprecationWarning only once

parent 481c2c37
Pipeline #35072 failed with stage
in 0 seconds
......@@ -31,13 +31,9 @@ from collections import Mapping
from collections import Iterable
try:
from deepdiff import DeepDiff
except ImportError:
DeepDiff = None
warnings.warn("Please install deepdiff, it is needed by json_representable mixin",
DeprecationWarning)
try:
from deepdiff.helper import strings, numbers
except ImportError:
DeepDiff = None
strings = None
numbers = None
warnings.warn("Please install deepdiff, it is needed by json_representable mixin",
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment