Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
ccbogel authored Dec 21, 2023
1 parent 651b166 commit 56d251f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions qualcoder/report_exact_matches.py
Original file line number Diff line number Diff line change
Expand Up @@ -256,8 +256,6 @@ def get_exact_text_matches(self):
cur.execute(sql, [selected_coder, fid])
excludes_result = cur.fetchall()

#final_matches_list = []
#one_line_results_list = []
for c in coded_results:
matching_codes_list = []
# Get all coded matching text segment data
Expand Down Expand Up @@ -286,6 +284,8 @@ def get_exact_text_matches(self):
one_line_results[0] += f", {str(matching_codes_list[row][0])}" # cid
one_line_results[1] += f"|{matching_codes_list[row][1]}" # codename
one_line_results[5] += f"|{matching_codes_list[row][5]}" # coded segment memo
if one_line_results[5] == "||":
one_line_results[5] = ""
one_line_results_list.append(one_line_results)

# Each rows displayed
Expand Down

0 comments on commit 56d251f

Please sign in to comment.