Skip to content

Commit

Permalink
Merge branch 'dev' of github.com:seperman/deepdiff into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
seperman committed Mar 5, 2025
2 parents 142c260 + 5895ad3 commit a7b4a45
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions deepdiff/diff.py
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ def __init__(self,
encodings: Optional[List[str]]=None,
exclude_obj_callback: Optional[Callable]=None,
exclude_obj_callback_strict: Optional[Callable]=None,
exclude_paths: Union[str, List[str]]=None,
exclude_paths: Union[str, List[str], None]=None,
exclude_regex_paths: Union[str, List[str], Pattern[str], List[Pattern[str]], None]=None,
exclude_types: Optional[List[Any]]=None,
get_deep_distance: bool=False,
Expand All @@ -151,7 +151,7 @@ def __init__(self,
ignore_type_subclasses: bool=False,
include_obj_callback: Optional[Callable]=None,
include_obj_callback_strict: Optional[Callable]=None,
include_paths: Union[str, List[str]]=None,
include_paths: Union[str, List[str], None]=None,
iterable_compare_func: Optional[Callable]=None,
log_frequency_in_sec: int=0,
math_epsilon: Optional[float]=None,
Expand Down

0 comments on commit a7b4a45

Please sign in to comment.