From 1c320064c0cc9cd931b91d0e971228e0459815d6 Mon Sep 17 00:00:00 2001 From: Debasish Pradhan Date: Wed, 10 Jun 2026 10:58:55 +0530 Subject: [PATCH] Refactor import statements in find_matches.py Updated import statements for clarity. --- find_matches/find_matches.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/find_matches/find_matches.py b/find_matches/find_matches.py index fad9602..ed074a6 100644 --- a/find_matches/find_matches.py +++ b/find_matches/find_matches.py @@ -1,7 +1,6 @@ -import sys -import csv -import re - +import sys #for comand line argv +import csv #for work with csv +import re #for checks matches class FindMatches(object): """ Takes a .csv input file and a matching type and returns a copy of the original csv with the unique identifier of the person each row represents prepended to the row.