Skip to content

Commit

Permalink
Update utils.py
Browse files Browse the repository at this point in the history
  • Loading branch information
filak committed Feb 7, 2024
1 parent 8f4f862 commit 26ac404
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion flask-app/application/modules/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -1624,7 +1624,7 @@ def exportTsvFile(export, inputFile, outputFile):
line = line.replace('@'+app.config['TARGET_LANG'], '')
line = line.replace('^^xsd:boolean', '')

row = line.strip().split(tab)
row = line.rstrip('\n').split(tab)

if export in ['umls_all','umls_raw']:
if row[1] == 'false':
Expand Down

0 comments on commit 26ac404

Please sign in to comment.