Skip to content

Commit

Permalink
Fix (my) bug causing mypy complaint
Browse files Browse the repository at this point in the history
  • Loading branch information
justaddcoffee committed Jul 4, 2020
1 parent f2a810d commit 9a0a3e5
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 @@ -55,7 +55,7 @@ def run(self, data_file: Optional[str] = None) -> None:

data_files.append(os.path.join(self.input_base_dir, "cv19_scc_1_2.zip"))
else:
data_files.append(data_files)
data_files.extend(data_files)

self.node_header = ['id', 'name', 'category', 'description', 'provided_by']
self.edge_header = ['subject', 'edge_label', 'object', 'relation', 'provided_by']
Expand Down

0 comments on commit 9a0a3e5

Please sign in to comment.