Skip to content

Commit

Permalink
Fix unintended comment line
Browse files Browse the repository at this point in the history
  • Loading branch information
deepakunni3 committed Jun 8, 2020
1 parent 4ac72b2 commit b11e163
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 @@ -58,7 +58,7 @@ def run(self, data_file: Optional[str] = None) -> None:
edge_handle = open(self.output_edge_file, 'w')
node_handle.write("\t".join(self.node_header) + "\n")
edge_handle.write("\t".join(self.edge_header) + "\n")
#self.parse_annotations(node_handle, edge_handle, data_files[0])
self.parse_annotations(node_handle, edge_handle, data_files[0])

node_handle = open(os.path.join(self.output_dir, "entity_cooccurrence_nodes.tsv"), 'w')
edge_handle = open(os.path.join(self.output_dir, "entity_cooccurrence_edges.tsv"), 'w')
Expand Down

0 comments on commit b11e163

Please sign in to comment.