beweinreich commited on
Commit
d76c731
1 Parent(s): 00d89f2

eh this isnt great

Browse files
Files changed (1) hide show
  1. chatgpt_audit2.py +1 -4
chatgpt_audit2.py CHANGED
@@ -88,10 +88,7 @@ for row in results:
88
 
89
  mapping = similarity_fast.find_most_similar_word(input_word)
90
 
91
- if mapping['dictionary_word'] == dictionary_word:
92
- print(" -> Correct")
93
- db_cursor.execute("UPDATE mappings SET reviewed = true WHERE input_word = %s", (input_word,))
94
- elif mapping['dictionary_word'] != dictionary_word:
95
  # temp stopgap
96
  continue
97
 
 
88
 
89
  mapping = similarity_fast.find_most_similar_word(input_word)
90
 
91
+ if mapping['dictionary_word'] != dictionary_word:
 
 
 
92
  # temp stopgap
93
  continue
94