summaryrefslogtreecommitdiff
path: root/remove_dups.py
diff options
context:
space:
mode:
authorGrail Finder <wohilas@gmail.com>2023-01-18 12:02:00 +0600
committerGrail Finder <wohilas@gmail.com>2023-01-18 12:02:00 +0600
commit3e42d4fb500811c992cd91f089525d66cd1a2fe2 (patch)
tree58fbf4ac1e3509f69bcc0d76d3e4c72c24add342 /remove_dups.py
parent7ab566ef1034520b0d8a74387db8b65968d7d1c0 (diff)
Modified cut to borders, removed filter func in dups
Diffstat (limited to 'remove_dups.py')
-rwxr-xr-xremove_dups.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/remove_dups.py b/remove_dups.py
index cc94416..706393c 100755
--- a/remove_dups.py
+++ b/remove_dups.py
@@ -85,7 +85,8 @@ def sortKeyFunc(s):
if __name__ == "__main__":
files = glob.glob(f"{directory}/*")
- files.sort(key=sortKeyFunc)
+ print(files)
+ # files.sort(key=sortKeyFunc)
prev_page = []
page_sep = "-"*60 + "\n"