Skip to content

Commit

Permalink
Update client.py
Browse files Browse the repository at this point in the history
  • Loading branch information
ddomingof committed Feb 11, 2022
1 parent 7ac0bf4 commit 1bfbc82
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bio2bel_kegg/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ def get_entities_lines(
total=len(entity_ids),
desc=f'Fetching protein information ({thread_pool_size} threads)',
)
return list(results)
return [(x, y) for x,y in results if x]


def ensure_kegg_entity(entity_id: str) -> Tuple[str, List[str]]:
Expand Down

0 comments on commit 1bfbc82

Please sign in to comment.