Skip to content

Commit

Permalink
Merge 3cd5730 into ceee6f0
Browse files Browse the repository at this point in the history
  • Loading branch information
justaddcoffee committed Jul 25, 2020
2 parents ceee6f0 + 3cd5730 commit f29718a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kg_covid_19/transform_utils/scibite_cord/scibite_cord.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ def parse_annotation_doc(self, node_handle, edge_handle, doc: Dict) -> None:
title = None
if 'metadata' in doc:
metadata = doc['metadata']
title = metadata['title'].replace('\n', ' ')
title = re.sub(r"[\n\t]", " ", metadata['title'])
# extract hits from metadata
terms.update(self.extract_termite_hits(metadata))

Expand Down

0 comments on commit f29718a

Please sign in to comment.