We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b7969f7 commit 20924c9Copy full SHA for 20924c9
stringComparisonFromCSV.py
@@ -22,7 +22,7 @@
22
with open(fileName) as csvfile:
23
reader = csv.DictReader(csvfile)
24
for row in reader:
25
- nameList.append(str(row['name']))
+ nameList.append(str(row['prefLabel']))
26
27
f=csv.writer(open(fileName[:fileName.index('.')]+'NearMatches.csv','wb'))
28
f.writerow(['percentage']+['name1']+['name2'])
0 commit comments