Algo testing
This commit is contained in:
parent
17d0cfcf8e
commit
07fa4d8bb6
@ -51,13 +51,12 @@ def returnduplicates(filehashes:dict):
|
||||
|
||||
def deleteDuplicates(duplicates):
|
||||
for dupe in duplicates:
|
||||
print(f'{dupe}')
|
||||
if len(dupe) > 2:
|
||||
print(f"Deal with this on ur own: {dupe}")
|
||||
print(f"Ignored dupe eg {dupe[0]}")
|
||||
elif len(dupe[0]) < len(dupe[1]) and "/" in dupe[0]:
|
||||
input(f"Delete {dupe[1]} and keep {dupe[0]}?")
|
||||
input(f"Delete {dupe[1]} and keep {dupe[0]}?\n")
|
||||
elif len(dupe[1]) < len(dupe[0]) and "/" in dupe[1]:
|
||||
input(f"Delete {dupe[0]} and keep {dupe[1]}?")
|
||||
input(f"Delete {dupe[0]} and keep {dupe[1]}?\n")
|
||||
|
||||
|
||||
def main():
|
||||
|
||||
Loading…
Reference in New Issue
Block a user