From e048aaa9aa6df04ece85052efe1f0dfb4af78bc6 Mon Sep 17 00:00:00 2001 From: George Lacey Date: Thu, 4 Dec 2025 15:31:08 +0000 Subject: [PATCH] add list_dupes stub --- src/main.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/main.py b/src/main.py index 4ba9ef5..4a72ae1 100644 --- a/src/main.py +++ b/src/main.py @@ -17,6 +17,11 @@ def main(main_dir: Path, new: Path): 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): if not path.is_dir():