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.
2 parents 5993a42 + ae846e4 commit 5895ad3Copy full SHA for 5895ad3
deepdiff/diff.py
@@ -131,7 +131,7 @@ def __init__(self,
131
encodings: Optional[List[str]]=None,
132
exclude_obj_callback: Optional[Callable]=None,
133
exclude_obj_callback_strict: Optional[Callable]=None,
134
- exclude_paths: Union[str, List[str]]=None,
+ exclude_paths: Union[str, List[str], None]=None,
135
exclude_regex_paths: Union[str, List[str], Pattern[str], List[Pattern[str]], None]=None,
136
exclude_types: Optional[List[Any]]=None,
137
get_deep_distance: bool=False,
@@ -151,7 +151,7 @@ def __init__(self,
151
ignore_type_subclasses: bool=False,
152
include_obj_callback: Optional[Callable]=None,
153
include_obj_callback_strict: Optional[Callable]=None,
154
- include_paths: Union[str, List[str]]=None,
+ include_paths: Union[str, List[str], None]=None,
155
iterable_compare_func: Optional[Callable]=None,
156
log_frequency_in_sec: int=0,
157
math_epsilon: Optional[float]=None,
0 commit comments