diff --git a/teams_task1.py b/teams_task1.py index 3c34572..37f0e6b 100644 --- a/teams_task1.py +++ b/teams_task1.py @@ -53,6 +53,5 @@ for (str1, str2) in combinations(names, 2): if similarity >= threshold: name_pairs.append((str1, str2, similarity)) -print(name_pairs) with open('name_dupes.json', 'w') as f: json.dump(name_pairs, f, indent=4, sort_keys=True) \ No newline at end of file