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.
1 parent 15264bf commit 724ae3fCopy full SHA for 724ae3f
dir_content_diff/__init__.py
@@ -333,6 +333,10 @@ def compare_trees(
333
for pattern in v.pop("patterns", []):
334
pattern_specific_args[re.compile(pattern)] = v
335
336
+ # Build the comparator registry if not given
337
+ if comparators is None:
338
+ comparators = get_comparators()
339
+
340
# Loop over all files and call the correct comparator
341
different_files = {}
342
for ref_file in ref_path.glob("**/*"):
0 commit comments