add list_dupes stub

This commit is contained in:
George Lacey 2025-12-04 15:31:08 +00:00
parent 2c6353494e
commit e048aaa9aa

View File

@ -17,6 +17,11 @@ def main(main_dir: Path, new: Path):
generate_photo_dict(main_dir, main_files, new) generate_photo_dict(main_dir, main_files, new)
list_dupes(main_files, new)
def list_dupes(main_files: dict, new:Path):
pass
def generate_photo_dict(path: Path, file_list: dict, exclude: Path): def generate_photo_dict(path: Path, file_list: dict, exclude: Path):
if not path.is_dir(): if not path.is_dir():